Advertisement
Guest User

Untitled

a guest
Jul 16th, 2018
301
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. function prefix_header_responsive_logo( $html ) {
  2.  
  3. if ( is_front_page() ) {
  4.  
  5. // Output image
  6. $html = sprintf( '<a href="%1$s" class="responsive-logo-link" rel="home"'. oceanwp_get_schema_markup( 'url' ) .'><img src="%2$s" class="responsive-logo" width="%3$s" height="%4$s" alt="%5$s" /></a>',
  7. esc_url( home_url( '/' ) ),
  8. 'https://www.onestopemail.com/wp-content/uploads/2018/02/ose-email-logo.jpg',
  9. '150',
  10. '50',
  11. 'Logo'
  12. );
  13.  
  14. }
  15.  
  16. // Return logo
  17. return $html;
  18.  
  19. }
  20. add_filter( 'ocean_responsive_logo', 'prefix_header_responsive_logo' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement