soderlind / mu-disable-gravatar
MU Disable Gravatar
Package info
github.com/soderlind/mu-disable-gravatar
Type:wordpress-muplugin
pkg:composer/soderlind/mu-disable-gravatar
1.0.0
2022-07-06 13:58 UTC
README
WordPress Must-use Plugin that disables Gravatar.
The plugin is simple and use the following hooks:
add_filter( 'pre_get_avatar', '__return_empty_string' ); add_filter( 'get_avatar', '__return_empty_string' );
pre_get_avatar: Short circuit the Gravatar request. I.e. Stop the request to Gravatar.com.
get_avatar: Set the new avatar to an empty string.