为了补充大脑所说的,你可以使用enqueue_script
函数将js文件添加到页脚,如果主题使用wp_footer
. 此外,在添加操作时,使用javascript使用order参数非常有用,这样您就可以按自己不希望的方式对其进行排序。
类似于:
wp_enqueue_script(\'myscript-name\',
get_bloginfo(\'stylesheet_directory\') . \'/js/myscript.js\',
array(\'jquery\'),
\'false\', //change version #
\'true\'); //in_footer?
//here we add a priority parameter to load one before the other if needed.
add_action(\'wp_print_scripts\', \'theme_register_scripts_other\', 10);
add_action(\'wp_print_scripts\', \'theme_register_scripts\', 20);
您还可以使用将其添加到页脚
wp_footer
而不是
wp_print_scripts
http://codex.wordpress.org/Function_Reference/wp_enqueue_script