Wordpress按自定义类型过滤

时间:2010-06-25 00:09:47

标签: wordpress custom-post-type

我正在尝试制作索引页面,但只显示特定自定义类型的帖子。

循环开始如下:

 <?php while ( have_posts() ) : the_post() ?>

如何修改代码只是为了显示名为“classifieds”的自定义类型的帖子?

谢谢!

1 个答案:

答案 0 :(得分:1)

你最好创建自己的查询,并完全绕过帖子类型检查;

query_posts('post_type=my_post_type');
while (have_posts()):
    ...
endwhile;