如何按类别获取最近的X帖子?

时间:2013-03-15 23:11:40

标签: php wordpress

如何返回特定类别中最新的X个帖子?我看过WP_Query()但不确定需要哪些参数。

1 个答案:

答案 0 :(得分:1)

我会用这样的东西

参考:http://codex.wordpress.org/Template_Tags/get_posts

<?php
global $post;
$args = array( 'numberposts' => 3, 'category' => 1 );
$lastposts = get_posts( $args );
foreach($lastposts as $post) : setup_postdata($post); ?>
    <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
    <?php the_content(); ?>
<?php endforeach; ?>