这是我用来获取最近WordPress帖子的代码。
<h2>Recent Posts</h2>
<ul>
<?php
$recent_posts = wp_get_recent_posts();
foreach( $recent_posts as $recent ){
echo \'<li><a href="\' . get_permalink($recent["ID"]) . \'">\' . $recent["post_title"].\'</a> </li> \';
}
?>
</ul>
我在中显示此代码
BuddyPress Profile Page.因此,我需要修改此代码,以仅显示特定作者最近的帖子。怎么做?
Ex : When "Adams" profile I need to display Adams recent posts, When "Milas" profile I need to display Milas recent posts.