如何在Wordpress 3.4.2上列出我的帖子。和主题二十

时间:2012-11-07 23:14:29

标签: wordpress list indexing

我试图找到一个解决方案,允许我对我发布的帖子进行“索引”(349个帖子,27个页面,28个类别和50个标签)。 是否有一个简单的解决方案允许我使用WordPress作为页面或帖子显示所有帖子,页面等的“索引”? 一个“索引页面”,读者和/或订阅者可以点击帖子/页面并将其带到特定的帖子。 我已经尝试了各种插件 - (Index Press),(目录加)提到一对,但除非我做错了什么,似乎没有什么对我有用。

2 个答案:

答案 0 :(得分:0)

<?php wp_get_archives('type=alpha'); ?>

这将按字母顺序列出所有帖子。

可在此处的法典中找到更多信息:wp_get_archives

答案 1 :(得分:0)

WP Query是你最好的朋友。

这将以链接的形式为您提供所有帖子和页面的列表。如果您有任何其他帖子类型,请将slug添加到post_type数组。

<?php
$args = array(
    'posts_per_page' => -1,
    'post_type' => array('post', 'page')
);
$q = new WP_Query($args);
if($q->have_posts()) : while($q->have_posts()) : $q->the_post();
?>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a><br/>
<?php
endwhile;endif;
?>