gpt4 book ai didi

wordpress - 向 Wordpress 添加全局设置(功能切换)

转载 作者:行者123 更新时间:2023-12-03 09:31:58 24 4
gpt4 key购买 nike

我有一个使用定制主题的 Wordpress 网站。我想在管理员的某处添加一个功能切换(复选框设置),各种主题页面可以读取它来改变它们的行为。

实现它的最佳方法是什么?如果您能包括我如何读取该设置,我们将不胜感激。

最佳答案

使用 Theme Customization API为了那个原因。复选框不在默认控件中,因此 custom control has to be built .

这在 functions.php 中:

/**
* Custom controller
* See http://ottopress.com/2012/making-a-custom-control-for-the-theme-customizer/
*/
if ( class_exists('WP_Customize_Control') ) {
class Example_Customize_Textarea_Control extends WP_Customize_Control {
public $type = 'checkbox';

public function render_content() {
?>
<label>
<span class="customize-control-select"><?php echo esc_html( $this->label ); ?></span>
<input <?php $this->link(); ?> type="checkbox" value="1" class="code" <?php checked( 1, $this->value() ); ?> />
</label>
<?php
}
}
}

/**
* Add custom theme options
*/
function theme_options_so_24523182( $wp_customize ) {
$wp_customize->add_section(
'bespoke_settings',
array(
'title' => 'Bespoke',
'description' => 'My custom settings',
'priority' => 11
)
);
$wp_customize->add_setting(
'show_header',
array(
'default' => false,
)
);
$wp_customize->add_control( new Example_Customize_Textarea_Control(
$wp_customize,
'show_header',
array(
'label' => 'Show header',
'section' => 'bespoke_settings',
'settings' => 'show_header',
'priority' => 8
)
));
}
add_action( 'customize_register', 'theme_options_so_24523182' );

header.php 中:

<?php
$show = get_theme_mod( 'show_header' );
if( $show ):
echo "Hello, world!";
endif;
?>

结果:

关于wordpress - 向 Wordpress 添加全局设置(功能切换),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24523182/

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