如何调用WordPress在functions.php中获得jQuery的正确方法?

时间:2014-02-15 11:08:07

标签: javascript php jquery wordpress wordpress-theming

我正在将HTML主题转换为WordPress。我使用这个函数调用Wordpress jQuery -

function insert_jquery(){
   wp_enqueue_script('jquery');
}
add_filter('wp_enqueue_scripts','insert_jquery');

它调用WordpRess jQuery但不能正常处理所有jquery元素。我的主滑块不工作,但其他滑块正在工作。我该怎么办?

我正在使用它来调用其他jQuery-

function load_custom_scripts() {
    wp_enqueue_script('custom_script', get_template_directory_uri() . '/js/scripts.js', array('jquery'), false, true);
}

add_action('wp_enqueue_scripts', 'load_custom_scripts');

1 个答案:

答案 0 :(得分:0)

您很可能需要将jQuery中的change $替换为'jQuery'。例如。

jQuery(document).ready(function($) { 
    // code here 
});

但是你的问题没有提供足够的信息继续下去。您在控制台中看到了什么错误?