我正在制作一个自定义的wordpress主题。js文件位于wp-content/theme/custom-theme/js/bootstrap.min.js
. 当我可以加载自定义CSS文件时,我无法在页面上加载此文件。我的代码是:
function test_styles(){
/* add style */
wp_enqueue_style(\'custom\',get_template_directory_uri().\'/style.css\');
}
add_action(\'wp_enqueue_scripts\', \'test_styles\');
function test_scripts(){
/* add script */
wp_enqueue_script(\'bootstrap-js\',get_template_directory_uri().\'/js/bootstrap.min.js\', array(\'jquery\'), true);
}
add_action(\'wp_enqueue_scripts\', \'test_scripts\')
这些函数位于php标记和
functions.php
文件提前谢谢。请帮忙。