正在预览的默认URL为home_url( \'/\' )
. 当没有url
打开时存在查询参数customize.php
, 这是使用的预览URL。如果没有url
使用以下内容查询参数以提供不同的默认值:
add_action( \'customize_controls_init\', function() {
global $wp_customize;
if ( ! isset( $_GET[\'url\'] ) ) {
$wp_customize->set_preview_url( get_permalink( 1 ) );
}
} );