我在函数中的函数。php
function adding_front_style(){
if(is_front_page()){
wp_enqueue_style(\'front\',get_template_directory_uri().\'/css/front.css\');
}else{
//some code
}
}
add_action(\'init\',\'adding_front_style\');
我的头版。php<?php get_header(); ?>
<div class = "search">
<?php get_search_form() ?>
</div>
我的前面。css .search{
background-color: blue;
}