Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  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' );