显示相关文章可以吸引访客进一步阅读网站,今天分享的这一段代码就是显示访客当前阅读的文章作者的另外五篇文章。
把下方的代码放在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主题已经集成了这个功能,无需代码实现了,很方便。
👋 感谢您的观看!
© 版权声明
THE END