Automattic\WooCommerce\Blocks\BlockTypes
CategoryDescription::render
Render the block.
Method of the class: CategoryDescription{}
No Hooks.
Returns
String. Rendered block output.
Usage
// protected - for code of main (parent) or child class $result = $this->render( $attributes, $content, $block );
- $attributes(array) (required)
- Block attributes.
- $content(string) (required)
- Block content.
- $block(WP_Block) (required)
- Block instance.
CategoryDescription::render() CategoryDescription::render code WC 10.5.0
protected function render( $attributes, $content, $block ) {
$term_id = $block->context['termId'] ?? 0;
$term_taxonomy = $block->context['termTaxonomy'] ?? 'product_cat';
$text_align = isset( $attributes['textAlign'] ) ? sanitize_key( $attributes['textAlign'] ) : '';
if ( ! $term_id ) {
return '';
}
$term = get_term( $term_id, $term_taxonomy );
if ( ! $term || is_wp_error( $term ) ) {
return '';
}
$description = $term->description;
if ( empty( trim( $description ) ) ) {
return '';
}
$classes = array();
if ( $text_align ) {
$classes[] = 'has-text-align-' . $text_align;
}
$wrapper_attributes = get_block_wrapper_attributes(
array(
'class' => implode( ' ', $classes ),
)
);
return sprintf(
'<div %1$s>%2$s</div>',
$wrapper_attributes,
wp_kses_post( wc_format_content( $description ) )
);
}