Advertisement
Guest User

Untitled

a guest
Oct 16th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <?php
  2.  
  3. /**
  4. * Set Default About Me Widget Image.
  5. */
  6. function yzc_set_default_profile_about_me_widget_image( $photo_url ) {
  7.  
  8. if ( ! empty( $photo_url ) ) {
  9. return $photo_url;
  10. }
  11. return 'put_here_default_image_link';
  12. }
  13. add_filter( 'yz_profile_about_me_widget_image', 'yzc_set_default_profile_about_me_widget_image' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement