链接到自定义帖子的页面?

时间:2011-06-27 08:29:18

标签: wordpress

我用一些称为项目和事件的自定义帖子类型创建了这个主题。

我现在想要链接到“存档页面”所有帖子类型的帖子。怎么可能?

谢谢!

1 个答案:

答案 0 :(得分:1)

尝试wp_query类,您可以使用帖子类型自定义它。 在此处阅读更多内容http://codex.wordpress.org/Class_Reference/WP_Query#Type_.26_Status_Parameters

然后您可以使用条件来更改存档页面中的代码:

if (have_posts()) : while (have_posts()) : the_post();

为:

$cat_posts = new WP_Query($query_string."post_type=projects");
if ($cat_posts->have_posts()) : while($cat_posts->have_posts()) : 
    $cat_posts->the_post();