按ID的WordPress查询分类法

Posted

tags:

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

When you create a custom post type and need to query by ID then you can pass in the 'field' and the 'terms' with the ID for that post type.
  1. $args = array('post_type'=>'bbfitness_exercises',
  2. 'tax_query' => array(
  3. 'taxonomy' => 'bbfitness_exercises_types',
  4. 'field' => 'id',
  5. 'terms' => $etype
  6. )
  7. )
  8. );
  9.  
  10. // The Query
  11. $the_query = new WP_Query( $args );
  12. $result = $the_query->posts;

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

Gatsby 和 WordPress graphQL:按 id 查询多个图像

wordpress通过$wpdb获取一个分类下所有的文章

WordPress主题开发:按分类调用文章

wordpress按分类获取文章上下页

按类别查询获取帖子-Wordpress

如何实现wordpress的友情链接两列显示,分类目录两列显示