如果您想继续使用排队的文件(可能是个好主意as outlined here), 然后-是的-您可以在函数中添加一些条件。php,例如:
if(some conditional) {
// enqueue header.php style here
}
if(some other conditional) {
// enqueue header-full.php style here
}
或者,你根本不必让他们排队。您可以在两个头文件中引用它们。例如,在收割台中。php输入:
<link rel="stylesheet" href="<?php echo get_stylesheet_directory_uri(); ?>/bootstrap/css/custom.css" type="text/css" media="screen" />
标题已满。php输入:
<link rel="stylesheet" href="<?php echo get_stylesheet_directory_uri(); ?>/bootstrap/css/full-header.css" type="text/css" media="screen" />