当前位置:  开发笔记 > 编程语言 > 正文

在Javascript中使用Wordpress Customizer

如何解决《在Javascript中使用WordpressCustomizer》经验,为你挑选了0个好方法。

我已经为Wordpress Customizer做了一个自定义控件,我想在脚本(Instafeed.js)中设置我的控件来改变limit数字.

根据这个答案,这就是我到目前为止的做法


功能

$wp_customize->add_setting(
        'imglimit',
        array(
            'default'      => '',
            'section'      => 'section',
));
$wp_customize->add_control('imglimit', array(
      'label'      => __('test'),
      'section'    => 'section',
      'settings'   => 'imglimit',
      'type'       => 'select',
      'choices'    => array(
        '5'   => '5',
        '10'  => '10',
        '20'  => '20',
      ),
));

function theme_customizer()
{
    $imglimit = get_theme_mod('imglimit');
}

谁能告诉我哪里出错了?我一直在寻找这个.

推荐阅读
无名有名我无名_593
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有