当前位置: 首页 > 资源共享 > 正文

首先找到 wp-includes/pluggable.php 文件,打开编辑 查找如下代码: 把这个代码替换成 […]

gravatar
首先找到 wp-includes/pluggable.php 文件,打开编辑

查找如下代码:

if ( is_ssl() ) {

$host = ‘https://secure.gravatar.com’;

} else {

	if ( is_ssl() ) {
		$host = 'http://www.gravatar.com';
	} else {
		if ( !empty($email) )
			$host = sprintf( "http://%d.gravatar.com", ( hexdec( $email_hash[0] ) % 2 ) );
		else
			$host = 'http://0.gravatar.com';
	

把这个代码替换成下面的代码:

if ( is_ssl() ) {
		$host = 'https://secure.gravatar.com';
	} else {
		if ( !empty($email) )
			$host ='https://secure.gravatar.com';
		else
			$host = 'https://secure.gravatar.com';
本文固定链接: https://blog.meyisi.cn/ziyuan/467.html | 么意思博客
标签:

WordPress 完美解决头像不显示:等您坐沙发呢!

发表评论

快捷键:Ctrl+Enter