我有一个自定义jquery文件,下面是代码:
/* Custom JS */
jQuery(document).ready(function(){
jQuery("#top-menu li:first-child a").addClass(\'selected\');
});
这里是我在函数中加载js文件的代码。php
add_action(\'wp_enqueue_scripts\', \'load_custom_scripts\');
function load_custom_scripts(){
wp_enqueue_script(\'custom_script\', THEMEROOT.\'/js/custom.js\', array(\'jquery\'), true);
}
但当我检查firebug时,没有找到我的js。希望有人告诉我我的代码出了什么问题?