Advertisement
Guest User

Custom Gravatar

a guest
Jan 8th, 2020
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.34 KB | None | 0 0
  1. // Make a new default gravatar available on the dashboard
  2. function newgravatar ($avatar_defaults) {
  3.  $myavatar ='https://www.example.com/xxx'; // this is the link to the directory where you have saved your custom image.
  4.  $avatar_defaults[$myavatar] = "Custom Avatar";
  5. return $avatar_defaults;
  6. }
  7. add_filter( 'avatar_defaults', 'newgravatar' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement