我希望有人能帮我找到这个问题的答案。我正在为 Genesis 主题构建一个基本子主题,并添加到主题定制器以允许快速设置基本主题设置。我遇到的问题是,每当我尝试添加自定义控件时,Customizer 都会中断。该网站仍然有效,只是定制器坏了。我的代码是这样的:
add_action( 'customize_register', 'um_register_theme_customizer' );
function um_register_theme_customizer( $wp_customize ) {
// Customizations that work here
我已经设置了所有工作的基本颜色设置。当我添加此设置时它会中断:
$wp_customize->add_setting(
'um_h6_font_size',
array(
'default' => '1.2'
)
);
$wp_customize->add_control(
new UM_Customize_Number_Control(
'um_h6_font_size',
array(
'label' => __( 'H6 Font Size (in rem)', 'um' ),
'section' => 'um_font_size_options',
'settings' => 'um_h6_font_size',
'type' => 'number'
)
)
);
// Classes
class UM_Customize_Number_Control extends WP_Customize_Control
{
public $type = 'number';
public function render_content()
{
?>
<label>
<span class="customize-control-title"><?php echo esc_html( $this->label ); ?></span>
<input type="number" size="2" step="1" min="0" value="<?php echo esc_attr( $this->value() ); ?>" />
</label>
<?php
}
}
} // Closes the um_register_theme_customizer function
如果我删除自定义控件,那么它会起作用,默认为文本输入(将类型更改为文本)。我想要做的就是把它变成一个数字字段。
我试图使用相同的方法在自定义程序中为子标题制作一个简单的 h6 文本部分,但遇到了同样的问题。
任何有关为什么这不起作用的帮助将不胜感激。我确定我错过了一些简单的东西。