当前位置:首页-WordPress文章-WordPress-正文

Wordpress获取自定义文章类型分类下的文章并循环

Wordpress获取自定义文章类型分类下的文章并循环 - 第1张Wordpress获取分类文章的函数有query_posts和WP_Query,两个函数的功能都很强大,推荐使用WP_Query函数来查询文章。对于默认的文章类型可以使用cat(整数)、category_name(字符串)、category__and(数组)、category__in(数组)来获取分类下的文章,而获取自定义文章类型下分类的文章则需要通过自定义分类法来查询。

直接贴出代码,其中的注释一看就能明白:

  1. <!--自定义文章类型分类查询-->
  2. <?php $salong_posts = new WP_Query(
  3.     array(
  4.         'post_type' => 'video',//自定义文章类型,这里为video
  5.         'ignore_sticky_posts' => 1,//忽略置顶文章
  6.         'posts_per_page' => 6,//显示的文章数量
  7.         'tax_query' => array(
  8.             array(
  9.                 'taxonomy' => 'video_category',//分类法名称
  10.                 'field'    => 'id',//根据分类法条款的什么字段查询,这里设置为ID
  11.                 'terms'    => 1,//分类法条款,输入分类的ID,多个ID使用数组:array(1,2)
  12.             )
  13.         ),
  14.     )
  15. );
  16. ?>
  17. <ul>
  18.     <?php if ($salong_posts->have_posts()): while ($salong_posts->have_posts()): $salong_posts->the_post(); ?>
  19.     <!-- 文章 -->
  20.     <li>
  21.         <a href="<?php the_permalink() ?>" title="<?php the_title(); ?>">
  22.             <?php the_title(); ?>
  23.         </a>
  24.     </li>
  25.     <!-- 文章end -->
  26.     <?php endwhileendif; ?>
  27. </ul>

[infobox]通过以上代码,我们就可以正确的获取自定义文章类型分类下的文章。[/infobox]

本文原创,作者:萨龙龙,其版权均为萨龙网络所有。
如需转载,请注明出处:https://salongweb.com/wordpress-custom-post-type-category-loop.html