我如何循环WordPress
个帖子,像
据我所知,我可以通过用asc/desc
添加顺序来选择最后一个和第一个,但是我不知道第二个。
答案 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 );