php 输出文章列表,WordPress按时间顺序循环输出文章列表
时间: 2024-01-04 08:03:29 浏览: 57
可以使用WordPress的默认函数`query_posts()`来获取文章列表:
```
<?php
query_posts('post_type=post&orderby=date&order=DESC');
if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<div><?php the_excerpt(); ?></div>
<?php endwhile; endif; wp_reset_query(); ?>
```
这段代码会按照时间倒序输出所有文章的标题和摘要。如果需要输出更多信息,可以在循环中添加对应的WordPress函数。`wp_reset_query()`可以用来重置查询,以便在后续的代码中查询其他内容。
阅读全文