is_customize_preview

函数
is_customize_preview ( No parameters )
返回值
  • (bool) True if the site is being previewed in the Customizer, false otherwise.
定义位置
相关方法
_set_previewwp_customize_urlis_preview_wp_customize_includepost_preview
引入
4.0.0
弃用
-

is_customize_preview: 如果当前页面在定制器预览中被查看,这个WordPress函数返回真。自定义器是WordPress中的一个工具,它允许用户自定义他们网站的外观和功能,而不需要对代码进行修改。

网站是否在Customizer中被预览。

function is_customize_preview() {
	global $wp_customize;

	return ( $wp_customize instanceof WP_Customize_Manager ) && $wp_customize->is_preview();
}

常见问题

FAQs
查看更多 >