use*_*335 4 javascript wordpress
我想在wordpress主题中添加多个外部javascript文件,我找到了添加一个文件的代码,但我需要添加更多的javascript文件.我该怎么做?
function wpTan_scripts() {
wp_register_script('app', '/js/app.js', false);
wp_enqueue_script( 'app' );
}
add_action('wp_enqueue_scripts', 'wpTan_scripts');
Run Code Online (Sandbox Code Playgroud)
您可以根据需要添加脚本.
function themeslug_enqueue_script() {
wp_enqueue_script( 'jquery-v-2', 'http://code.jquery.com/jquery-2.1.3.min.js', false );
wp_enqueue_script( 'mycustomJs', 'file_name.js', false );
// here you can enqueue more js / css files
}
add_action( 'wp_enqueue_scripts', 'themeslug_enqueue_script' );
Run Code Online (Sandbox Code Playgroud)