• Skip to main content
  • Skip to forum navigation

StudioPress

  • Shop for Themes
  • My StudioPress

Forum navigation

  • Home
  • General Genesis Discussions
  • StudioPress Themes
  • Genesis Blocks
    • Genesis Blocks
    • Genesis Custom Blocks
  • Retired Themes
  • FAQs
  • Forum Rules
  • Internationalization and Translations
  • Forum Bugs and Suggestions
  • Forum Log In

Are You Using The WordPress Block Editor?

Genesis now offers plugins that help you build better sites faster with the WordPress block editor (Gutenberg). Try the feature-rich free versions of each plugin for yourself!

Genesis Blocks Genesis Custom Blocks

Show Author bio & Gravatar in Multi-Author Blog Using Genesis

Welcome!

These forums are for general discussion on WordPress and Genesis. Official support for StudioPress themes is offered exclusively at My StudioPress. Responses in this forum are not guaranteed. Please note that this forum will require a new username, separate from the one used for My.StudioPress.

Log In
Register Lost Password

Community Forums › Forums › Archived Forums › General Discussion › Show Author bio & Gravatar in Multi-Author Blog Using Genesis

This topic is: not resolved

Tagged: author bio, author box

  • This topic has 1 reply, 2 voices, and was last updated 10 years, 3 months ago by Brad Dalton.
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • October 3, 2015 at 6:12 pm #167327
    RahulDubey137
    Member

    How can we show multiple authors (more precisely, guest bloggers) gravatar and author bio in any Genesis theme ? Do we need to create separate account for doing this ?

    For reference checkout this site how author bio and gravatar of various guest bloggers is shown below post without creating separate account.

    October 4, 2015 at 7:52 am #167381
    Brad Dalton
    Participant

    The post you linked to contains comment authors after the post.

    If you want to display a list of authors, you could use the contributors.php file from the Twenty Fourteen default theme as a guide and the template tag in that file which includes:

    get_users
    get_the_author_meta

    Example:

    if ( ! function_exists( 'twentyfourteen_list_authors' ) ) :
    /**
     * Print a list of all site contributors who published at least one post.
     *
     * @since Twenty Fourteen 1.0
     */
    function twentyfourteen_list_authors() {
    	$contributor_ids = get_users( array(
    		'fields'  => 'ID',
    		'orderby' => 'post_count',
    		'order'   => 'DESC',
    		'who'     => 'authors',
    	) );
    
    	foreach ( $contributor_ids as $contributor_id ) :
    		$post_count = count_user_posts( $contributor_id );
    
    		// Move on if user has not published a post (yet).
    		if ( ! $post_count ) {
    			continue;
    		}
    	?>
    
    	<div class="contributor">
    		<div class="contributor-info">
    			<div class="contributor-avatar"><?php echo get_avatar( $contributor_id, 132 ); ?></div>
    			<div class="contributor-summary">
    				<h2 class="contributor-name"><?php echo get_the_author_meta( 'display_name', $contributor_id ); ?></h2>
    				<p class="contributor-bio">
    					<?php echo get_the_author_meta( 'description', $contributor_id ); ?>
    				</p>
    				">
    					<?php printf( _n( '%d Article', '%d Articles', $post_count, 'twentyfourteen' ), $post_count ); ?>
    				
    			</div><!-- .contributor-summary -->
    		</div><!-- .contributor-info -->
    	</div><!-- .contributor -->
    
    	<?php
    	endforeach;
    }
    endif;
    

    Or

    https://codex.wordpress.org/Class_Reference/WP_User_Query


    Tutorials for StudioPress Themes.

  • Author
    Posts
Viewing 2 posts - 1 through 2 (of 2 total)
  • The forum ‘General Discussion’ is closed to new topics and replies.

CTA

Ready to get started? Create a site or shop for themes.

Create a site with WP EngineShop for Themes

Footer

StudioPress

© 2026 WPEngine, Inc.

Products
  • Create a Site with WP Engine
  • Shop for Themes
  • Theme Features
  • Get Started
  • Showcase
Company
  • Brand Assets
  • Terms of Service
  • Accptable Usse Policy
  • Privacy Policy
  • Refund Policy
  • Contact Us
Community
  • Find Developers
  • Forums
  • Facebook Group
  • #GenesisWP
  • Showcase
Resources
  • StudioPress Blog
  • Help & Documentation
  • FAQs
  • Code Snippets
  • Affiliates
Connect
  • StudioPress Live
  • StudioPress FM
  • Facebook
  • Twitter
  • Dribbble