How to WordPress profile picture without plugin. Do you regularly change your profile picture? If that’s the case, this is the article for you.
How to WordPress profile picture without plugin
You can change your WordPress profile picture without having to use the Default Gravatar! We’ll go over how to modify your profile image in WordPress without using Gravatar by utilizing plugins or custom code. List of snippet variables available in Yoast SEO
Go. Media – Add New
Appearance – Theme File Editor – functions.php
add_filter( ‘avatar_defaults’, ‘wpb_new_gravatar’ );
function wpb_new_gravatar ($avatar_defaults) {
$myavatar = ‘http://example.com/wp-content/uploads/2017/01/wpb-default-gravatar.png’;
$avatar_defaults[$myavatar] = “Default Gravatar”;
return $avatar_defaults;
}
after save it go settings – Discussion – select Default Gravatar and save it