0
我想在我最近的博客文章中顯示作者的名字。我嘗試過,但沒有工作。有人請幫助我。在最近的博文中得到作者姓名
$args = array('numberposts' => '8');
$recent_posts = wp_get_recent_posts($args);
foreach($recent_posts as $recent){?>
<i><?php echo get_the_author(); ?></i>
<i><?php echo $recent['post_author']; ?></i>
}?>
get_the_author();
它沒有顯示任何輸出。而 $recent['post_author'];
它表明所以輸出1
非常感謝你的答案... – tstudent