使用获取帖子()
get_posts()
是 WP_Query
对象的单独实例的包装器。返回的值是 post 对象的数组。
global $post;
$args = array(
'numberposts' => 5,
'offset'=> 1,
'category' => 1
);
$myposts = get_posts( $args );
foreach( $myposts as $post ) :
setup_postdata($post); ?>
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<?php endforeach;
wp_reset_postdata(); ?>
有关更多信息,请查看 get_posts()
codex 页面 。