i1.wp.com url problem (Jetpack not installed)
I added the following code to the functions.php file
add_filter( 'avatar_defaults', 'new_gravatar' );
function new_gravatar ($avatar_defaults) {
$myavatar = 'link';
$avatar_defaults[$myavatar] = "name";
return $avatar_defaults;
I'm taking the profile picture from my own server. But there is a problem!
"I1.wp.com" appears at the beginning of the url in the profile image. What is the reason? So it looks like: "https://i1.wp.com/mysite.com/images/myavatar.png"
I've disabled all plugins. But the result was not successful.
I'm dealing with it in days. How do we delete wp.com at the beginning of Url?