下面的内容可以很好地将Javascript文件加载到我的主题中(通过子主题)。。。
function my_scripts_method() {
if ( is_page_template(\'templates/page-alert-amber.php\')):
wp_enqueue_script(
\'bootstrap js\',
get_stylesheet_directory_uri() . \'/bootstrap/js/hellojs.js\',
array( \'jquery\' )
);
endif;
}
add_action( \'wp_enqueue_scripts\', \'my_scripts_method\' );
我的问题是-如何还包括样式表?我以为下面的方法行得通,但没有。。。
function my_scripts_method() {
if ( is_page_template(\'templates/page-alert-amber.php\')):
wp_enqueue_script(
\'bootstrap js\',
get_stylesheet_directory_uri() . \'/bootstrap/js/hellojs.js\',
array(\'jquery\')
);
wp_enqueue_style(
\'bootstrap css\',
get_stylesheet_directory_uri() . \'/bootstrap/css/hello.css\',
array()
endif;
}
add_action( \'wp_enqueue_scripts\', \'my_scripts_method\' );
谢谢