某个帖子中的帖子tag_ID

时间:2012-04-25 17:52:23

标签: wordpress custom-post-type

我希望能够使用has_term函数不仅找到类别,而且如果帖子与has_term匹配,还可以使用条件语句来执行某些操作。这不起作用。例如:

if (has_term('28', 'product_cat')){
    //do something
}

这只在查看tag_ID 28时有效,但在tag_ID 28中没有。

1 个答案:

答案 0 :(得分:0)

函数has_term用法是:

<?php has_term( $term, $taxonomy, $post ) ?>

Check this codex page了解更多详情。我认为你还需要在该函数中指定post id。默认设置仅检查当前帖子。