Wednesday, 15 April 2015

php - Wordpress - Trying to show user profile images -



php - Wordpress - Trying to show user profile images -

i have custom user profile photo plugin , trying phone call profile images loop on mainpage creating. if user has post, should display post , profile image. know doing simple wrong, life of me cannot figure out. right show same image , name, post going users posts. forgive me if it's stupid. has been quite while since have been in php.

<?php $posts = get_posts('orderby=author&numberposts=10&category_name=userstories'); foreach($posts $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; ?>

php wordpress

No comments:

Post a Comment