我在页面中输出了一堆自定义帖子类型。如何在当前页面中获取帖子的所有标题?
答案 0 :(得分:4)
您应该查看WP_Query()以输出自定义帖子类型。下面的代码获取了所有类型为“custom_post_type”的自定义帖子,将它们放在一个名为$ loop的变量中并遍历它,输出其中包含的每个帖子的标题。
<?php
// Get the 'Profiles' post type
$args = array(
'post_type' => 'custom_post_type',
);
$loop = new WP_Query($args);
while($loop->have_posts()): $loop->the_post();
the_title();
endwhile;
wp_reset_query();
?>
还有其他参数可以传递给WP_Query(),使其更适合您的需求。可以找到文档here。
答案 1 :(得分:0)
在“The Loop”之前,你也可以使用:
<?php query_posts('post_type=your_custom_post_type');?>