WordPress获取自定义文章类型所有分类法文章循环
在之前的文章里,wp自学笔记详细讲解过WordPress自定义文章类型(PostType),并且有过使用自定义文章类型实现网址导航案例,有心的朋友可以再温故下前面这两篇文章:
[xx_insert_post station_article=”1165″][xx_insert_post station_article=”1210″]
接下来这篇WordPress教程wp自学笔记将会详细讲解如何获取自定义文章类型下所有分类法和文章循环。
话不多说,直接贴上功能代码:
<!--自定义文章类型分类查询-->
<?php
$salong_posts = new WP_Query(
array(
'post_type' => 'video',//自定义文章类型,这里为video
'ignore_sticky_posts' => 1,//忽略置顶文章
'posts_per_page' => 6,//显示的文章数量
'tax_query' => array(
array(
'taxonomy' => 'video_category',//分类法名称
'field' => 'id',//根据分类法条款的什么字段查询,这里设置为ID
'terms' => 1,//分类法条款,输入分类的ID,多个ID使用数组:array(1,2)
)
),
)
);
?>
<ul>
<?php
if ($salong_posts->have_posts()):
while ($salong_posts->have_posts()):
$salong_posts->the_post();
the_title();
endwhile; endif;
?>
</ul>
使用方法
上面代码能够获取到你已经创建的自定义文章类型、分类法和分类法的所有文章,只需要新建一个自定义文章类型的分类模板即可使用!
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END