Wordpress/JavaScript 烦恼

Wordpress/JavaScript troubles

我正在 Wordpress 网站上工作,我想使用我编写的滑动画廊。我一直在尝试将它排入队列,但我没有任何运气让它工作。当我查看开发人员工具以查看正在使用哪些来源时 pulled/if 控制台抛出任何错误,我什至没有看到 JavaScript 文件出现。

google 开发工具中显示的文件结构 front-page。php(滑块将存在的位置)

所有其他页面的 google 开发工具中显示的文件结构

functions.php代码:

function glv_scripts() {
    wp_enqueue_style( 'glv-style', get_stylesheet_uri(), array(), _S_VERSION );
    wp_enqueue_script( 'script', get_template_directory_uri() . '/js/script.js', array(), null, true );
}
add_action( 'wp_enqueue_scripts', 'glv_scripts' );

我终于意识到我错过了 front-page.php 中的页脚调用,所以它没有显示,因为我将页脚设置为 true 但忘记了页脚。 :S