使用獲取帖子()

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 頁面