如何在wp上的脚本中获取动态图像

时间:2014-09-09 15:57:42

标签: wordpress wordpress-plugin wordpress-theming

我如何在wp中为每个帖子动态或查询这种类型的脚本?

<script>
        $(document).ready(function() {   
           mast.init(); 
          $("#laptop").rollerblade({
              imageArray : [
                rootPath + 'macbook/front.png',
                rootPath + 'macbook/front-side-right.png',
                rootPath + 'macbook/side-right.png',
                rootPath + 'macbook/back-side-right.png',
                rootPath + 'macbook/back.png',
                rootPath + 'macbook/back-side-left.png',
                rootPath + 'macbook/side-left.png',
                rootPath + 'macbook/front-side-left.png'
            ],
            sensitivity : 50,
            drag : true
        });
    });

</script>

我需要在wordpress中动态获取rootPath图像。

1 个答案:

答案 0 :(得分:0)

如果您不熟悉jQuery和wordpress,首先您需要将jQuery引用从$更改为jQuery。

接下来,您可以更改主题的header.php以输出根路径

<script>
var rootPath = <?php site_url(); ?>;
</script>

现在,如果您真正想要的是您主题的网址......它会略有变化。

<script>
var rootPath = <?php echo get_template_directory_uri(); ?>;
</script>

http://codex.wordpress.org/Function_Reference/site_url http://codex.wordpress.org/Function_Reference/get_template_directory_uri