我们在使用 WordPress 想要判断某篇普通文章类型 post 是否属于某个分类,使用 in_category()函数就可以知晓,如果是我们自己创建的自定义类型文章,我们应该如何判断它是否属于某个自定义分类呢?相信很多小伙伴是不知道如何操作的,下面就来教大家 WordPress 如何判断当前文章是否为自定义类型所属。
WordPress 判断当前文章是否为自定义类型所属需要用到 is_object_in_term()函数,is_object_in_term()函数用法:
- is_object_in_term( int $object_id, string $taxonomy, int|string|int[]|string[] $terms = null )
$object_id:(int)(必需) 对象的 ID(帖子 ID、链接 ID、...)。
$taxonomy:( string ) (必填) 单一分类法名称。
$terms:( int | string | int[] | string[] ) (可选) 要检查的术语 ID、名称、slug 或数组,默认值:空。
- <?php
- if (is_object_in_term( $post->ID, 'custom_taxonomy_name', 'term_name' ) ) :
- echo 'YES';
- else :
- echo 'NO';
- endif;
- ?>
比如我想要判断某篇自定义类型文章是否属于自定义分类 postwd 中的分类 WordPress(分类别名为:wordpress,分类 ID 为:9),则可以写成:
- <?php
- if (is_object_in_term( $post->ID, 'postwd', 'wordpress' ) ) :
- echo 'YES';
- else :
- echo 'NO';
- endif;
- ?>
或者
- <?php
- if (is_object_in_term( $post->ID, 'postwd', '9' ) ) :
- echo 'YES';
- else :
- echo 'NO';
- endif;
- ?>