> WordPress开发手册 > 模版判断函数

模版判断函数


功能实现

根据不同页面调用不同的css样式

<? if( is_home() ){//首页 ?><link rel="stylesheet" href="<? bloginfo('template_directory');?>/style-home.css" type="text/css" /><? } ?>
	<? if( is_category() ){//分类页 ?><link rel="stylesheet" href="<? bloginfo('template_directory');?>/style-cat.css" type="text/css" /><? } ?>
	<? if( is_search() ){//搜索页 ?><link rel="stylesheet" href="<? bloginfo('template_directory');?>/style-search.css" type="text/css" /><? } ?>
	<? if( is_404() ){//404页 ?><link rel="stylesheet" href="<? bloginfo('template_directory');?>/style-404.css" type="text/css" /><? } ?>
	<? if( is_single() ){//文章页 ?><link rel="stylesheet" href="<? bloginfo('template_directory');?>/style-single.css" type="text/css" /><? } ?>
	<? if( is_page() ){//普通页面 ?><link rel="stylesheet" href="<? bloginfo('template_directory');?>/style-page.css" type="text/css" /><? } ?>



上一篇:
下一篇: