如何显示最新的作者博客文章?
我有以下代码:
<?php
$author = get_the_author();
$args = array( \'numberposts\' => \'1\', \'author\'=>$author );
$recent_posts = wp_get_recent_posts( $args );
foreach( $recent_posts as $recent ){
echo \'<li><a href="\' . get_permalink($recent["ID"]) . \'">\' . $recent["post_title"].\'</a> </li> \';
}
?>
但是,上面的代码为所有用户而不是特定用户显示最近的帖子。