如何返回特定类别中最近 X 个帖子?我查看了 WP_Query() 但不确定需要哪些参数。
问问题
63 次
1 回答
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; ?>
于 2013-03-16T00:25:26.810 回答