我有多个 javascript 文件。如何通过 wp_register_script 将这些添加到 wordpress ?我可以通过添加单个 javascript 文件
function wptuts_scripts_with_jquery() {
wp_register_script( 'custom-script', get_template_directory_uri() . '/js/custom-script.js', array( 'jquery' ) );
// For either a plugin or a theme, you can then enqueue the script:
wp_enqueue_script( 'custom-script' );
}
add_action( 'wp_enqueue_scripts', 'wptuts_scripts_with_jquery' );