我有自定义用户配置文件照片插件,我试图将配置文件图像调用到我正在创建的主页上的循环。如果用户有帖子,则应显示帖子及其个人资料图片。我知道我可能正在做一些非常简单的错误,但对于我的生活我无法理解。现在它将显示相同的图像和名称,但帖子本身将转到用户帖子。如果它是愚蠢的话,请原谅我。自从我使用php以来已经有一段时间了。
<?php
$posts = get_posts('orderby=author&numberposts=10&category_name=userstories');
foreach($posts as $post){
?>
<ul class="random_user_stories">
<li>
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post();
$imgURL = get_the_author_meta('cupp_upload_meta',$author->ID);
$name = get_the_author_meta('first_name'). ' ' .get_the_author_meta('last_name');
echo '<img src="'. $imgURL .'" alt=""/><br/>';
echo "$name's Story";
?>
</a>
</li>
</ul>
<?php endwhile; endif; ?>