gpt4 book ai didi

php - 在自己的 Wordpress 主题中显示部分编辑按钮

转载 作者:搜寻专家 更新时间:2023-10-31 21:50:58 25 4
gpt4 key购买 nike

基本的 Wordpress 主题在定制器中显示了这个编辑按钮:

enter image description here

我也想将其添加到我自己的主题中。根据this post , 有必要打开选择性刷新

我试着用我的自定义部分来做到这一点。仔细查看 add_theme_support('customize-selective-refresh-widgets');selective_refresh->add_partial() 因为我认为这些是我唯一需要做的事情添加:

  function toorgmot_customize_register($wp_customize){

add_theme_support( 'customize-selective-refresh-widgets' );

$wp_customize->add_section('toorgmot-welcome-message-section',array(
'title' => 'Welcome Message'
));

$wp_customize->add_setting('toorgmot-welcome-message-text',array(
'default' => 'Hallo en welkom!'
));

$wp_customize->add_control( new WP_Customize_Control($wp_customize,
'toorgmot-welcome-message-control', array(
'label' => 'Text',
'section'=> 'toorgmot-welcome-message-section',
'settings' => 'toorgmot-welcome-message-text'
)));

$wp_customize->selective_refresh->add_partial( 'toorgmot-welcome-message-text', array(
'selector' => '.welcome-message',
'render_callback' => function() {
echo get_theme_mod('toorgmot-welcome-message-text');
},
));
}

add_action('customize_register','toorgmot_customize_register');

它不会返回错误。额外的部分可以在定制器中编辑,就像我想要的那样。但是,选择性刷新不起作用,编辑按钮也不显示。

最佳答案

<head> 中调用 wp_head()标签和 <body> 之后和 wp_footer() 就在 </body> 之前.就这样

<!DOCTYPE html>
<html>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<?php wp_head(); ?>
</head>
<body>
<?php wp_head(); ?>

<?php wp_footer(); ?>
</body>
</html>

关于php - 在自己的 Wordpress 主题中显示部分编辑按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42372256/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com