判断
来源于:
https://my.oschina.net/158/blog/383400
添加于主题文件的header部分
<?php if ( is_home() ) { ?>//如果是主页
<link rel="stylesheet" href="cssA" type="text/css" />
<?php } elseif( is_single() ) { ?>//如果是文章内页
<link rel="stylesheet" href="cssB" type="text/css" />
<?php } elseif( is_archive() || is_search() ) { ?>//如果是搜索页面
<link rel="stylesheet" href="cssC" type="text/css" />
<?php } elseif( is_page(1028) ) { ?>//如果是ID为1028的页面
<link rel="stylesheet" href="cssD" type="text/css" />
<?php } elseif( is_category(1314) ) { ?>//如果是ID为1314的分类
<link rel="stylesheet" href="cssE" type="text/css" />
<?php } else { ?>//其余的页面
<link rel="stylesheet" href="cssF" type="text/css" />
<?php } ?>