在函数中加载脚本时遇到问题。php
我以前做过这件事,所以我肯定我忽略了一些东西,但就我所知,这是正确的,我尝试过从其他答案中复制和粘贴。我没有收到任何控制台错误。我的任何脚本都没有加载到源代码中。感谢您的帮助。
functions.php
/*SCRIPTS*/
add_action( \'wp_enqueue_scripts\', \'theme_js\' );
function theme_js(){
wp_register_script( \'bootstrap_min_js\', get_template_directory_uri() . \'/js/bootstrap.min.js\', array(\'jquery\'), \'\', true );
wp_enqueue_script( \'bootstrap_min_js\' );
}