不要使用“助手”方法,它们往往会造成更多的麻烦。
任何时候你想要抓取帖子,无论是最新的、最老的、类别中的帖子,都可以使用WP_Query
循环,以下是其标准形式:
$query = new WP_Query( $args );
if ( $query->have_posts() ) {
while ( $query->have_posts() ) {
$query->the_post();
// do stuff
}
wp_reset_postdata();
} else {
// none were found
}
这是什么
wp_recent_posts
将在内部进行,尽管做得不太好。因此,请将上述内容保存到编辑器中的自动完成宏中