Guest User

Untitled

a guest
May 25th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. // set logo
  2. if (!has_custom_logo()) {
  3. // set logo of site to an image located at http://www.example.com/myimage.png
  4. }
  5.  
  6. if( ! has_custom_logo() ) {
  7. add_filter( 'wp_get_attachment_image_src', '__return_dummy_logo_src' );
  8. the_custom_logo();
  9. remove_filter( 'wp_get_attachment_image_src', '__return_dummy_logo_src' );
  10. }
  11.  
  12. function __return_dummy_logo_src( $src ) {
  13. return 'https://example.com/image.jpg';
  14. }
Add Comment
Please, Sign In to add comment