如何在WordPress中设置自己的默认Gravatar
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在WordPress中设置自己的默认Gravatar相关的知识,希望对你有一定的参考价值。
Add the following code to the end of the functions.php file. Et voilà !
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' );
以上是关于如何在WordPress中设置自己的默认Gravatar的主要内容,如果未能解决你的问题,请参考以下文章
黄聪:wordpress在IIS8中设置默认编码(windows2012服务器)
在 https:// 中设置默认 Wordpress 并将其重定向到 http:// 并在 Cloudflare 中将 http:// 转发到 https://