enqueue_legacy_post_comments_block_styles()
Enqueues styles from the legacy core/post-comments block. These styles are required only by the block's fallback.
No Hooks.
Returns
null. Nothing (null).
Usage
enqueue_legacy_post_comments_block_styles( $block_name );
- $block_name(string) (required)
- Name of the new block type.
Changelog
| Since 6.1.0 | Introduced. |
enqueue_legacy_post_comments_block_styles() enqueue legacy post comments block styles code WP 7.0
function enqueue_legacy_post_comments_block_styles( $block_name ) {
static $are_styles_enqueued = false;
if ( ! $are_styles_enqueued ) {
$handles = array(
'wp-block-post-comments',
'wp-block-buttons',
'wp-block-button',
);
foreach ( $handles as $handle ) {
wp_enqueue_block_style( $block_name, array( 'handle' => $handle ) );
}
$are_styles_enqueued = true;
}
}