1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-06-24 10:16:27 +02:00
blog/_src/_posts/2008-12-11-how-to-set-a-custom-gravatar-image-in-wordpress-27.markdown

3.4 KiB

author comments date layout slug title wordpress_id categories tags
Matthias Kretschmann true 2008-12-11 22:59:06+00:00 post how-to-set-a-custom-gravatar-image-in-wordpress-27 HowTo: Set A Custom Gravatar Image In Wordpress 2.7+ 344
design
tutorial

Wordpress Logo by kremalicious

Sure enough I've upgraded immediately when Wordpress 2.7 was released. Among all the other things that changed in this new version the comments functions got a massive overhaul. But the new comment loop with the new function lacks the ability to quickly set a custom default gravatar or avatar image. But with some help of the functions.php file we can set the default gravatar image in the Discussion settings in the Wordpress backend.

Before Wordpress 2.7 I achieved a custom gravatar image on kremalicious.com with this code placed in the comments.php template file:

<code data-language="php"><?php if(function_exists('get_avatar')) {
        echo get_avatar( $comment, $size = '70', $default = '<?php bloginfo('template_directory'); ?>/images/gravatar.png' );
} ?></code>

So we were able to set a path to our image we wanted to use as the default gravatar image. But with Wordpress 2.7 we have the new function which pretty much simplifies writing comment template code. Although it has a parameter for the avatar size it doesn't have one for setting a custom image like before.

But we can use the functions.php file in your template directory and add some lines to it: (If you don't have a functions.php file just create one.)

<code data-language="php"><?php  
function my_own_gravatar( $avatar_defaults ) {  
    $myavatar = get_bloginfo('template_directory') . '/images/gravatar.png';  
    $avatar_defaults[$myavatar] = 'GRAVATAR NAME DISPLAYED IN WORDPRESS';  
    return $avatar_defaults;  
}  
add_filter( 'avatar_defaults', 'my_own_gravatar' );   
?></code>

Just set a name for your custom Gravatar image to show up beside the image in the Wordpress back-end. The code above assumes you have your custom default gravatar image inside a folder called images inside your template directory. Change it to your environment if neccessary. After that a new entry in the Wordpress backend under Settings > Discussions will appear with the custom image specified:

custom gravatar

And you can adjust the displayed size of the gravatar image by adding a parameter to function in your comments.php file:

<code data-language="php"><?php wp_list_comments(array('avatar_size'=>70, )); ?></code>

And that's it. As you would guess I pretty much prefer this way to adjust the gravatar image. But you're free to write your custom comment callback function to exactly define the output of the comments. But it's definitely too much if you just want to change the gravatar stuff.