Advertisement
Guest User

Untitled

a guest
Oct 21st, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. function electro_header_support() {
  2.  
  3. $support_number = apply_filters( 'electro_header_support_number', '<strong>Support</strong> (+800) 856 800 604' );
  4. $support_email = apply_filters( 'electro_header_support_email', 'Email: info@electro.com' );
  5. $support_icon = apply_filters( 'electro_header_support_icon', 'ec ec-support' );
  6.  
  7. if ( apply_filters( 'electro_show_header_support_info', true ) ) : ?><div class="header-support">
  8. <div class="header-support-inner">
  9. <div class="support-icon">
  10. <img src="IMAGE SOURCE LINK">
  11. </div>
  12. <div class="support-info">
  13. <div class="support-number"><?php echo wp_kses_post( $support_number ); ?></div>
  14. <div class="support-email"><?php echo wp_kses_post( $support_email ); ?></div>
  15. </div>
  16. </div>
  17. </div><?php endif;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement