Advertisement
arie_cristianD

override gravatar profile on comment

Jan 20th, 2025
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.33 KB | None | 0 0
  1. add_filter( 'pre_get_avatar', 'override_gravatar_comment_profile', 99, 3 );
  2.  
  3. function override_gravatar_comment_profile( $avatar, $id_or_email, $args ) {
  4.     if ( is_object( $id_or_email ) && isset( $id_or_email->comment_ID ) && 55 === $args['size'] ) {
  5.         return get_avatar( $id_or_email->user_id, $args['size'] );
  6.     }
  7.     return $avatar;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement