enqueue_legacy_post_comments_block_styles

函数
enqueue_legacy_post_comments_block_styles ( $block_name )

enqueue_legacy_post_comments_block_styles: 这个函数为传统的文章评论块排队获取样式表。

从传统的`core/post-comments’区块中提取样式。这些样式只被该区块的回退所需要。

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;
	}
}

常见问题

FAQs
查看更多 >