php 自定义Gravatar

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 自定义Gravatar相关的知识,希望对你有一定的参考价值。

<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.

//* Create a custom Gravatar
add_filter( 'avatar_defaults', 'sp_custom_gravatar' );
function sp_custom_gravatar ($avatar) {
	$custom_avatar = get_stylesheet_directory_uri() . '/images/gravatar.png';
	$avatar[$custom_avatar] = "Custom Gravatar";
	return $avatar;
}

以上是关于php 自定义Gravatar的主要内容,如果未能解决你的问题,请参考以下文章

WORDPRESS自定义默认GRAVATAR

杨泽业:如何给你的博客评论添加自定义的gravatar头像?

WordPress头像无法显示怎么办

php 添加默认头像头像gravatar

php 用户Gravatar

php 获取Gravatar / Avatar循环WordPress