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

Posted

tags:

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

function add_custom_gravatar ($avatar) {
$custom_avatar = get_bloginfo('template_directory') . '/images/name-of-your-custom-gravatar.jpg';
$avatar[$custom_avatar] = "Gravatar name to be shown in the WordPress settings"; //change this name to your preferences
return $avatar;
}
add_filter( 'avatar_defaults', 'add_custom_gravatar' );

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

如何在 Wordpress 中设置 cookie

php Wordpress在单词中设置自定义excrept长度。

如何在php编码中设置默认值

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

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

如何使用 jquery 和 php 从动态数据中设置默认下拉列表?