首页    >    新闻资讯    >   显示当前作者相关日志

显示当前作者相关日志

显示相关文章可以吸引访客进一步阅读你的网站,今天分享的这一段代码就是显示访客当前阅读的文章作者的另外五篇文章。
同样是把第一段代码放在functions.php中。

function get_related_author_posts() {
    global $authordata, $post;
    $authors_posts = get_posts( array( 'author' => $authordata->ID, 
    'post__not_in' => array( $post->ID ),'posts_per_page' => 5 ) );
    $output = '<ul>';
    foreach ( $authors_posts as $authors_post ) {
        $output .= '<li><a href="' . get_permalink( $authors_post->ID ) . '">' 
       . apply_filters( 'the_title', $authors_post->post_title, $authors_post->ID ) . '</a></li>';
    }
    $output .= '</ul>';
    return $output;
}

然后把第二段代码放在single.php中你想显示的地方。

<?php echo get_related_author_posts(); ?>

 

分类:新闻资讯

标签:, , ,

* 版权声明:作者WordPress啦! 转载请注明出处。