返回 (bool) 如果正在自定义程序中预览站点,则为true,否则为false。 相关被使用描述get_custom_logo()返回链接到主页的自定义logo,除非主题支持删除主页链接WP_Widget_Text::render_control_template_scripts()wp_custom_css_cb()get_custom_header_markup()the_custom_header_markup()WP_Customize_Selective_Refresh::handle_render_partials_request()wp_admin_bar_customize_menu()wp_site_icon()_custom_background_cb()WP_Widget_Recent_Comments::__construct()_wp_menu_item_classes_by_context() 源码查看源码 官方文档 更新日志版本描述4.0.0开始引入 使用示例示例1如果当前在定制器预览页面上,可以有条件地添加一些内容的简单示例: if ( is_customize_preview() ) { // perform customizer specific action } else { // perform separate action }