首先学习WP_Query 班
回答问题:
(这个问题)如何获取内容类型的第n个元素?例如,始终从数据库中获取最新的第一个或第五个元素。
$query = new WP_Query( \'post_type=special_stuff&posts_per_page=1&paged=5\' );
列表项目
// The Query
$the_query = new WP_Query( $args );
// The Loop
while ( $the_query->have_posts() ) : $the_query->the_post();
echo \'<li>\';
the_title();
echo \'</li>\';
endwhile;
// Reset Post Data
wp_reset_postdata();