尝试以下操作:
add_action( \'wp_enqueue_scripts\', \'my_custom_styles_function\', 100 );
function my_custom_styles_function(){
if (is_page_template(\'test-template.php\')) {
wp_enqueue_style( \'my-custom-css\', get_stylesheet_directory_uri() . \'/custom-style.css\' );
}
}
wp_enqueue_scripts
钩子用于包含新样式表。此处模板为
test-template.php
. 使用模板进行更改。样式表将仅包含在页面模板中。