有没有可能有一个部分的render_callback
方法来显示帖子属性,如标题、内容等。
基本概念:
index.php
if ( have_posts() ) {
while ( have_posts() ) {
the_post();
echo \'<div class="element">\' . the_ID() . \'</div>\';
}
}
上面将显示以下内容:1794179217901788。。。
functions.php
add_action( \'customize_register\', function( $wp_customize ) {
$wp_customize->selective_refresh->add_partial( \'option_partial\', array(
\'selector\' => \'.element\',
\'settings\' => array( \'option\' ),
\'render_callback\' => function() {
the_ID();
},
) );
} );
add_action( \'customize_register\', function( $wp_customize ) {
$wp_customize->add_section( \'section\', array(
\'title\' => \'Section\',
) );
$wp_customize->add_setting( \'option\', array(
\'transport\' => \'postMessage\',
\'default\' => true,
) );
$wp_customize->add_control( \'option\', array(
\'section\' => \'section\',
\'type\' => \'checkbox\',
) );
} );
而
render_callback
将显示:1794179417941794。。。