@zero
2024-12-27
wordpress文章列表循环中获取用户头像
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<h2><?php the_title(); ?></h2>
<?php
// 获取作者 ID
$author_id = get_the_author_meta('ID');
// 显示作者头像
echo get_avatar( $author_id, 96 ); // 96 是头像的大小,你可以根据需要调整
?>
// 这里可以继续添加其他你想显示的文章内容,如摘要、阅读更多链接等
<?php endwhile; endif; ?>
还没有评论
您必须 登录 后才能发表评论。