wpseek.com
A WordPress-centric search engine for devs and theme authors
render_block_core_term_description › WordPress Function
Sincen/a
Deprecatedn/a
› render_block_core_term_description ( $attributes )
Parameters: |
|
Returns: |
|
Defined at: |
|
Codex: |
Renders the `core/term-description` block on the server.
Source
function render_block_core_term_description( $attributes ) { $term_description = ''; if ( is_category() || is_tag() || is_tax() ) { $term_description = term_description(); } if ( empty( $term_description ) ) { return ''; } $extra_attributes = ( isset( $attributes['textAlign'] ) ) ? array( 'class' => 'has-text-align-' . $attributes['textAlign'] ) : array(); $wrapper_attributes = get_block_wrapper_attributes( $extra_attributes ); return '<div ' . $wrapper_attributes . '>' . $term_description . '</div>'; }