Advertisement
Misplon

Polestar Sticky Logo

Mar 5th, 2020
505
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.53 KB | None | 0 0
  1. if ( ! function_exists( 'polestar_child_sticky_logo' ) ) :
  2. function polestar_child_sticky_logo( $html ) {
  3.  
  4.     $html = preg_replace( '/<img(.*?)\/>/', '<img class="alt-logo" style="max-width: 75px;" src="https://purothemes.com/wp-content/uploads/2016/10/puro-logo-100.png" alt="puro logo" /><img class="alt-logo-scroll" style="max-width: 75px;" src="https://purothemes.com/wp-content/uploads/2016/06/puro-logo-1.png" alt="puro logo" />', $html );
  5.  
  6.     return $html;
  7. }
  8. endif;
  9. add_filter( 'get_custom_logo', 'polestar_child_sticky_logo' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement