Archive | avatars RSS feed for this section

Adding Your Own Custom Avatar to WordPress

Have you ever wanted to replace the “Blank Man” or the default Gravatar avatar in the comments section of your WordPress site with your own branded avatar? Here’s the code you’ll need to put in your theme’s functions.php file to get this done: add_filter( ‘avatar_defaults’, ‘newgravatar’ ); function newgravatar ($avatar_defaults) { $myavatar = get_bloginfo(‘template_directory’) . [...]

1 Comment Continue Reading →