Home / Disable Gravatar Avatars
Duplicate Snippet

Embed Snippet on Your Site

Disable Gravatar Avatars

Prevent WordPress from loading gravatar avatars for users.

100+
Code Preview
php
<?php
add_filter( 'get_avatar', function( $avatar, $id_or_email, $size, $default, $alt ) {
    return ''; // Return an empty string to disable the gravatar
}, 10, 5 );

Comments

Add a Comment