您可以使用以下代码获取给定作者的最新帖子,只需根据需要取消对两行中的一行的注释。参见法典more info on WP_Query.
Codex条目很长,因此向下滚动到Parameters section 有关可用于筛选查询的各种选项的详细信息。
$query = new WP_Query(array(
// get most recent post by Author\'s nickname (not username!)
// \'author_name\' => \'Joe\'
// get most recent post by Author\'s ID
// \'author\' => 7,
\'posts_per_page\' => 1,
));