is_category函数用于自定义分类术语

时间:2010-08-22 06:37:27

标签: php wordpress if-statement custom-post-type categories

我正在尝试找到一个条件标记来识别自定义分类法的开放术语。假设我有一个分类“地图”,我正在浏览分类标识的名为'USA'的术语,ID为50.是否有类似弃用的is_term

像:

<?php if(is_term(50, 'map')) : ?>
...
<?php endif; ?>

3 个答案:

答案 0 :(得分:0)

http://codex.wordpress.org/Function_Reference/is_term提到is_term已被term_exists

取代

答案 1 :(得分:0)

答案 2 :(得分:0)

  

您必须使用is_tax()

以下是代码:

//@param $taxonomy
//@param $term
if (is_tax('map', '50'))
{
    //DO your stuff.
}

代码经过测试并有效。

希望这有帮助!