如何提取Wordpress中两种不同post类型共享的标签

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何提取Wordpress中两种不同post类型共享的标签相关的知识,希望对你有一定的参考价值。

Extract all the tags (shared between two post types) used with a specific post type
  1. $articles_in_post_type = get_posts( array(
  2. 'fields' => 'ids',
  3. 'post_type' => 'post',
  4. 'posts_per_page' => -1,
  5. ));
  6. $tags = wp_get_object_terms( $articles_in_post_type, 'post_tag', array('ids') );

以上是关于如何提取Wordpress中两种不同post类型共享的标签的主要内容,如果未能解决你的问题,请参考以下文章

c#中两种不同的存储过程调用与比较

VUE中两种不同颜色的背景

laravel 5.4 中两种不同的身份验证模型

scikit learn中两种不同矢量化技术的余弦相似度得分相同

php变量中两种特殊类型

JavaScript中两种类型的全局对象/函数