时间:2024-03-14
WordPress函数is_category用于判断当前页面是否为分类页面,如果指定了$category参数,该函数将另外检查是否为指定的分类页面。
is_category( mixed $category = '' )
$category
混合型,默认为空
可以传递分类ID、名称、别名或数组
if(is_category( array( 9, 'blue-cheese', 'Stinky Cheeses' ) )) { //当前页面为分类页面,且ID为9,或别名为blue-cheese,或名称为Stinky Cheeses } else { //不为指定分类页面时输出 }
is_category()函数位于:wp-includes/query.php
相关函数:
is_archive()
is_tax()
is_tag()
Copyright © 2019-2024 asp.cyou