如果在函数中使用wp\\u enqueue\\u style(),则可以从页面(single.php等)调用函数。。。传递一个带有页面名称的字符串,在函数中使用该字符串来决定要排队的样式。这将以正确的方式在头部加载脚本。
https://developer.wordpress.org/reference/functions/wp_enqueue_style/
例如:。
// In single.php
enqueue_my_script(\'single\');
//In functions.php
function enqueue_my_script($page = null){
if($page === \'single\') {
add_action( \'wp_enqueue_scripts\', \'single_styles\');
}
}
function single_styles() {
wp_enqueue_style( \'slider\', get_template_directory_uri() . \'/css/slider.css\', array(), null, null);
}
我很确定像这样的事情应该按照你的意愿进行,尽管现在对我来说已经快凌晨2点了!