在主题中找到functions.php
添加JavaScript脚本时。
function theme_scripts() {
wp_enqueue_style( \'theme-style\', get_stylesheet_uri() );
wp_enqueue_script( \'theme-navigation\', get_template_directory_uri() . \'/app.js\', array(), \'20170325\', true );
if ( is_singular() && comments_open() && get_option( \'thread_comments\' ) ) {
wp_enqueue_script( \'comment-reply\' );
}
}
add_action( \'wp_enqueue_scripts\', \'theme_scripts\' );
把它们放在文件的末尾
functions.php
我一直在做这个动作。