wp_is_block_theme

函数
wp_is_block_theme ( No parameters )
返回值
  • (bool) Whether the active theme is a block-based theme or not.
定义位置
相关方法
wp_enable_block_templatesis_child_themeget_block_templatewp_using_themeswp_is_stream
引入
5.9.0
弃用
-

wp_is_block_theme: 这个函数用来检查当前的主题是否是WordPress中的一个区块主题。区块主题是一种新的主题类型,它被设计为与区块编辑器无缝地工作。

返回活动主题是否是一个基于区块的主题。

function wp_is_block_theme() {
	return wp_get_theme()->is_block_theme();
}

常见问题

FAQs
查看更多 >