wp_register_script不加载脚本

function enqueue_my_so_scripts() { wp_register_script('theme-custom-js', get_template_directory_uri().'/js/custom.js', array(), '', false ); wp_register_script('theme-bootstrap-js', get_template_directory_uri().'/js/bootstrap.min.js', array(), '3.3.7', true ); wp_enqueue_script('theme-custom-js'); wp_enqueue_script('theme-bootstrap-js'); }add_action( 'wp_enqueue_scripts', 'enqueue_my_so_scripts' );

我不确定为什么脚本没有加载任何想法… !
#1我检查了你的域http://creative.advertania.com/, 可以看到脚本custom.js和bootstrap.min.js都在页脚中加载。
【wp_register_script不加载脚本】如果仍然看不到脚本, 则可能是在你的末端出现了缓存问题。尝试清除缓存并在其他浏览器中加载你的域名。

    推荐阅读