Code-Snippets-Functions/Execute a function on a child site/WordPress/remove-avatars-from-comments.txt

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' );