• Resolved levani01

    (@levani01)


    Is it possible to automaticaly add author’s Gravatar avatar next to every post title? I have found several plugins but they all work for comments only. I need to add avatars in comments as well as in posts. Can you help me?

Viewing 2 replies - 1 through 2 (of 2 total)
  • I’m not aware of a plugin that does this (although there could very well be one) but this tutorial explains how to add it to the end of each post.

    http://stylizedweb.com/2008/10/14/wordpress-post-author-description/

    Hi there,

    I have the following code in my single.php

    Its supposed to pull the Gravatar for the relevant author who has written the post and display their name as well within each single post. Similar code is within my comments.php and this works fine.

    I can’t understand what I am missing – I’m no expert!

    Thanks in advance –

    http://www.joecrogan.com

    </div><!–/post–>

    <?php if (get_option(‘woo_author’) != “”) { ?>

    <div class=”author_info”>
    <h3>This post was written by:</h3>

    <?php
    // Determine which gravatar to use for the user
    $email = get_the_author_email();
    $grav_url = “http://www.gravatar.com/avatar.php?gravatar_id=&#8221;.md5($email). “&default=”.urlencode($GLOBALS[‘defaultgravatar’] ).”&size=48″;
    $usegravatar = get_option(‘woo_gravatar’);
    ?>

    <?php if ( $usegravatar ) { ?><span class=”author_photo”><img src=”<?php echo $grav_url; ?>” width=”48″ height=”48″ alt=”” /></span><?php } ?>
    <p><?php the_author_posts_link(); ?> – who has written <?php the_author_posts(); ?> posts on /”><?php bloginfo(‘name’); ?>.</p>
    <p><?php the_author_description(); ?> <br style=”clear:both;” /></p>
    <p class=”author_email”>”>Contact the author</p>
    </div>

    <?php } ?>

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Gravatar avatars in posts’ is closed to new replies.