将css排队时使用条件模板标记。
add_action( \'wp_enqueue_scripts\', \'wwm_enqueue_scripts\' );
function wwm_enqueue_scripts()
{
//is_front_page() may or may not be the appropriate tag...
//perhaps is_home() might server you better...???
if ( is_front_page() ) {
//put the appropriate things in these variables for your stylesheet...
wp_enqueue_style( $handle, $src, $deps, $version, $media );
}
//enqueue other stuff (or not)
}
请参阅条件标记上的文档:
http://codex.wordpress.org/Conditional_Tags