调查wp_register_script() 和wp_enqueue_script(). 你可能只能接受后者。
在结束之前,请特别注意您想要的情况</body>
您可以指定的in_footer
作为参数。
wp_enqueue_script( $handle, //(string) name of script
$src = \'\', // uri to script
$deps = array(), //handles of other scripts this script is dependent on
$ver = \'1.0\', version number of script
$in_footer = true //if script should be in footer
)
您可以通过
wp_enqueue_scripts
hookfunction enqueue_your_scripts() {
wp_enqueue_script( \'script-name\', plugin_dir_url( __FILE__ ) . \'/js/example.js\', array(), \'1.0.0\', true );
}
add_action( \'wp_enqueue_scripts\', \'enqueue_your_scripts\' );
在上述内容中,
plugin_dir_url( __FILE__ )
正在返回文件所在的插件目录,我们假设子目录为
/js/
和一个名为
example.js