查询自定义分类法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了查询自定义分类法相关的知识,希望对你有一定的参考价值。

Use WP_Query to query a custom taxonomy, using the tax_query parameter.
  1. <?php
  2. // Example query to select all posts belonging to a custom taxonomy.
  3. $args = array(
  4. 'tax_query' => array(
  5. 'taxonomy' => 'TAXONOMY_NAME',
  6. 'field' => 'slug',
  7. 'terms' => 'TAXONOMY_SLUG'
  8. )
  9. )
  10. );
  11. $the_query = new WP_Query( $args );
  12.  
  13. // The Loop
  14. while ( $the_query->have_posts() ) : $the_query->the_post();
  15. echo '<li>';
  16. the_title();
  17. echo '</li>';
  18. endwhile;
  19.  
  20. // Reset Post Data
  21. wp_reset_postdata();
  22. ?>

以上是关于查询自定义分类法的主要内容,如果未能解决你的问题,请参考以下文章

在自定义分类模板中的 WP_Query 期间查询(2)ACF 发布对象

VSCode自定义代码片段6——CSS选择器

VSCode自定义代码片段(vue主模板)

Wordpress自定义Post类型自定义分类法和查询

VSCode自定义代码片段——声明函数

VSCode自定义代码片段——.vue文件的模板