我如何循环WordPress特定帖子

时间:2019-04-03 06:24:58

标签: wordpress

我如何循环WordPress个帖子,像

  • 最后一个。
  • 倒数第三名。

据我所知,我可以通过用asc/desc添加顺序来选择最后一个和第一个,但是我不知道第二个。

1 个答案:

答案 0 :(得分:0)

您是否尝试将最近的帖子的偏移量限制为1?像这样:

$args = array(
'numberposts' => 1, // only return 1 post
'offset' => 2, // select the third item found
'orderby' => 'post_date', // field for order by
'order' => 'DESC', //DESC for 3th most recent, ASC for third oldest post
'post_type' => 'post', // could be any post type, remove if you want all post types
'post_status' => 'publish' // only show published posts, remove if you want all even trashed
);

$recent_posts = wp_get_recent_posts( $args );