render_block_core_term_description()WP 5.9.0

Renders the core/term-description block on the server.

No Hooks.

Returns

String. Returns the description of the current taxonomy term, if available

Usage

render_block_core_term_description( $attributes, $content, $block );
$attributes(array) (required)
Block attributes.
$content(string) (required)
Block default content.
$block(WP_Block) (required)
Block instance.

Changelog

Since 5.9.0 Introduced.

render_block_core_term_description() code WP 6.9.1

function render_block_core_term_description( $attributes, $content, $block ) {
	$term_description = '';

	// Get term from context or from the current query.
	if ( isset( $block->context['termId'] ) && isset( $block->context['taxonomy'] ) ) {
		$term = get_term( $block->context['termId'], $block->context['taxonomy'] );
		if ( $term && ! is_wp_error( $term ) ) {
			$term_description = $term->description;
		}
	} elseif ( is_category() || is_tag() || is_tax() ) {
		$term_description = term_description();
	}

	if ( empty( $term_description ) ) {
		return '';
	}

	$classes = array();
	if ( isset( $attributes['textAlign'] ) ) {
		$classes[] = 'has-text-align-' . $attributes['textAlign'];
	}
	if ( isset( $attributes['style']['elements']['link']['color']['text'] ) ) {
		$classes[] = 'has-link-color';
	}
	$wrapper_attributes = get_block_wrapper_attributes( array( 'class' => implode( ' ', $classes ) ) );

	return '<div ' . $wrapper_attributes . '>' . $term_description . '</div>';
}