WORDPRESS自定义默认GRAVATAR
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WORDPRESS自定义默认GRAVATAR相关的知识,希望对你有一定的参考价值。
Gives you the option to select a custom gravatar in the Wordpress discussion setting in admin dashboard
//place this in your functions.php file <?php add_filter('avatar_defaults', 'newgravatar'); function newgravatar ($avatar_defaults) {$myavatar = get_bloginfo('template_directory') . '/images/default_gravatar.png'; $avatar_defaults[$myavatar] = "yournamehere"; return $avatar_defaults;} ?> //add this where you want your gravatar, notice the default url "<pathtourl>" removed <?php echo get_avatar($comment,$size='48',$default='' ); ?></div>
以上是关于WORDPRESS自定义默认GRAVATAR的主要内容,如果未能解决你的问题,请参考以下文章
PHP 如何在WordPress中设置自己的默认Gravatar