Revision: 28924
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at July 16, 2010 06:14 by labsecrets
Initial Code
add_filter( 'avatar_defaults', 'newgravatar' ); function newgravatar ($avatar_defaults) { $myavatar = get_bloginfo('template_directory') . '/images/labrats-gravatar.jpg'; $avatar_defaults[$myavatar] = "LabSecrets - Booyah!"; return $avatar_defaults; }
Initial URL
Initial Description
Change the name of the image file from "/labrats-gravatar.jpg" to whatever you want to call the image you upload. Be sure that it is sized to 128x128px and is a .jpg format. Be sure to upload this image file to your theme directory in the "images" folder. If you want, you can change the description text "LabSecrets - Booyah!" below as well.
Initial Title
Change the default Mystery Man Avatar
Initial Tags
Initial Language
HTML