WordPress判断是否为分类函数:is_category

WordPress函数is_category用于判断当前页面是否为分类页面,如果指定了$category参数,该函数将另外检查是否为指定的分类页面。

1
is_category( mixed $category = '' )

函数参数

$category

混合型,默认为空

可以传递分类ID、名称、别名或数组

函数使用示例

1
2
3
4
5
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()
原文链接:https://xiaohost.com/2301.html,转载请注明出处。
0