我无法在我的wordpress主题中使用javascript

时间:2015-12-27 14:25:05

标签: javascript jquery wordpress

我一直关注上一个帖子(How do I add a simple jQuery script to WordPress?)给出的一些inst,但是我无法让它们工作,而我的wordpress主题(自建)并没有甚至似乎意识到有任何javascript被添加。

我试图添加一个简短的jQuery脚本来打开和关闭响应式导航菜单。

到目前为止,我已经为我的javascript文件创建了一个文件夹 - (/wp-content/themes/lucie-averill-photography/js/script.js)

在我的script.js文件中,我有:

jQuery(document).ready(function() {
    jQuery(".menu-trigger").click(function() {
             jQuery(".nav-menu").slideToggle(400, function() {
             jQuery(this).toggleClass("nav-expanded").css('display', '');
         }); 
    }); 
});

在我的函数文件中,我添加了:

add_action( 'wp_enqueue_scripts', 'add_my_script' );
function add_my_script() {
    wp_enqueue_script(
   'script', // name your script so that you can attach other scripts and de-register, etc.
    get_template_directory_uri() . '/js/script.js', // this is the location of your script file
    array('jquery') // this array lists the scripts upon which your script depends
    );
}

这些都没有对我的主题产生任何影响 - 谁能看到这里可能出现的问题?

感谢。

0 个答案:

没有答案