我有一个使用此代码的作者函数的相关帖子:
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' => 10 ) );
$output = '<div class="block">';
foreach ( $authors_posts as $authors_post ) {
$output .= '<a href="' . get_permalink( $authors_post->ID ) . '">' . apply_filters( 'the_title', $authors_post->post_title, $authors_post->ID ) . '</a>';
}
$output .= '</div>';
return $output; }
要输出,我在 single.php 文件的循环中使用以下代码:
<?php echo get_related_author_posts(); ?>
目前,它仅将帖子标题显示为链接的功能。
为了通过作者功能显示此相关帖子的缩略图,应该如何查看此 wp 代码?