Wordpress功能将显示特定作者的帖子

时间:2014-10-23 06:51:39

标签: php wordpress

我正在尝试创建一个显示特定作者发布的帖子的函数。

让我们说作者的具体名称是'尼克'我不知道如何执行它。

我正在为$ post和$ authordata使用全局变量。

这是我的代码段:

function display_post_via_specific_author() {

    global $authordata, $post;  //Declare Global Variables

    $authors_three_posts = get_posts( 
              array(
                'author' => $authordata->ID, 
                 'posts_per_page' => 3
                )
               );                          

    echo '<h5>Latest Posts by Sam</h5>';

    $output = '<ul>';
    foreach ( $authors_three_posts as $authors_post ) {
        $output .= '<li><a href="' . get_permalink( $authors_post->ID ) . '">' . get_the_title($authors_post->ID) . '</a></li>';

    }
    $output .= '</ul>';

    return $output;

}

我希望你能帮助我解决这个问题!

谢谢!

1 个答案:

答案 0 :(得分:0)

我知道这听起来有点......嗯......奇怪的是“回答”,

但为什么不直接链接到他的个人资料?它将显示作者在他下面的最新文章。 ;)