在Javascript中使用Wordpress Customizer

时间:2015-12-26 13:12:15

标签: javascript php wordpress

我已经为Wordpress Customizer进行了自定义控件,我想在脚本(Instafeed.js)中设置我的控件,以更改limit数字。

关注this answer这是我到目前为止的方式

<script type="text/javascript">  
          var userFeed = new Instafeed({
            get: '',
            tagName: '',
            clientId: '',
            limit: var imglimit = <?php echo json_encode($imglimit); ?>;,
            });
            userFeed.run();
</script>

功能

$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');
}

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

1 个答案:

答案 0 :(得分:2)

嗯,你在这里遇到语法错误:)

final NumberFormat nf = NumberFormat.getInstance(Locale.US);
String formatted = nf.format(parsed / 100);

因此,您应该将该代码块更改为

      var userFeed = new Instafeed({
        get: '',
        tagName: '',
        clientId: '',
        limit: var imglimit = <?php echo json_encode($imglimit); ?>;,
//             ^^^^^^^^^^^^ here                      and here     ^ 
        });

实际上你不一定需要在这里进行json编码,因为它只是一个数字。但如果那是一个阵列或对象,是的,你应该编码那个。

在您的PHP代码中,您应该 var userFeed = new Instafeed({ get: '', tagName: '', clientId: '', limit: <?php echo json_encode($imglimit); ?>, }); 全局:

$imglimit

或者只是将其放入js:

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