home/wwgoat/public_html/blog/wp-includes/blocks/term-description.php 0000644 00000002470 14720656215 0021754 0 ustar 00 implode( ' ', $classes ) ) );
return '
' . $term_description . '
';
}
/**
* Registers the `core/term-description` block on the server.
*
* @since 5.9.0
*/
function register_block_core_term_description() {
register_block_type_from_metadata(
__DIR__ . '/term-description',
array(
'render_callback' => 'render_block_core_term_description',
)
);
}
add_action( 'init', 'register_block_core_term_description' );