0

我有一个使用此代码的作者函数的相关帖子:

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 代码?

4

1 回答 1

0

尝试:

foreach ( $authors_posts as $authors_post ) {
  $output .= get_the_post_thumbnail($authors_post->ID);
  $output .= '<a href="' . get_permalink( $authors_post->ID ) . '">' . apply_filters( 'the_title', $authors_post->post_title, $authors_post->ID ) . '</a>';
}
$output .= '</div>';

检查get_the_post_thumbnail以获取更多信息,如图像大小和额外类等属性。
如果您需要更多帮助,请告诉我。

于 2013-06-06T13:16:48.560 回答