如何在WordPress中设置自己的默认Gravatar

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在WordPress中设置自己的默认Gravatar相关的知识,希望对你有一定的参考价值。

Add the following code to the end of the functions.php file. Et voilà !
  1. function add_custom_gravatar ($avatar) {
  2. $custom_avatar = get_bloginfo('template_directory') . '/images/name-of-your-custom-gravatar.jpg';
  3. $avatar[$custom_avatar] = "Gravatar name to be shown in the WordPress settings"; //change this name to your preferences
  4. return $avatar;
  5. }
  6. add_filter( 'avatar_defaults', 'add_custom_gravatar' );

以上是关于如何在WordPress中设置自己的默认Gravatar的主要内容,如果未能解决你的问题,请参考以下文章

黄聪:wordpress在IIS8中设置默认编码(windows2012服务器)

在 https:// 中设置默认 Wordpress 并将其重定向到 http:// 并在 Cloudflare 中将 http:// 转发到 https://

如何在 Wordpress 中设置 cookie

如何在 WordPress 中设置、获取和销毁 cookie?

CSS 如何:在WordPress 2.7中设置作者评论

如何:在wordpress2.7中设置作者评论的样式