mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
5 lines
186 B
Text
5 lines
186 B
Text
function wp_remove_avatars_from_comments( $avatar ) {
|
|
global $in_comment_loop;
|
|
return $in_comment_loop ? '' : $avatar;
|
|
}
|
|
add_filter( 'get_avatar', 'wp_remove_avatars_from_comments' );
|