Created
April 12, 2012 16:32
-
-
Save claudiosanches/2368899 to your computer and use it in GitHub Desktop.
Wordpress custom gravatar
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Coloque isso no functions.php | |
if ( !function_exists('my_new_gravatar') ) { | |
function cs_new_gravatar( $avatar_defaults ) { | |
// Suba a imagem para a pasta images do tema | |
$myavatar = get_bloginfo('template_directory').'/images/SUAIMAGEM.jpg'; | |
// Inseria o nome do gravar que vai aparecer em Configurações > Discussão | |
$avatar_defaults[$myavatar] = 'NOME DO GRAVATAR'; | |
return $avatar_defaults;} | |
add_filter( 'avatar_defaults', 'cs_new_gravatar' ); | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment