这将在循环中使用时检索当前作者的帖子。
将以下内容放入主题函数中。php:
function my_get_display_author_posts() {
global $authordata, $post;
$authors_posts = get_posts( array( \'author\' => $authordata->ID, \'post__not_in\' => array( $post->ID ) ) );
$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;
}
和添加
echo my_get_display_author_posts();
在模板文件中,在要显示帖子的循环中。