Advertisement
Guest User

contact-details-top,php

a guest
Oct 21st, 2020
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. <?php
  2. /**
  3. * Displays Contact Details on header top
  4. *
  5. * @package Clean_Blocks
  6. */
  7. $email = get_theme_mod( 'foodie_world_header_top_email' );
  8. $address = get_theme_mod( 'foodie_world_header_top_address' );
  9. $phone = get_theme_mod( 'foodie_world_header_top_contact' );
  10.  
  11. if ( $email || $address || $phone ): ?>
  12. <div class="header-top-left">
  13. <ul class="contact-details">
  14. <?php if ( $email ) : ?>
  15. <li class="contact-email"><a href="mailto:<?php echo esc_attr( antispambot( $email ) ); ?>"><?php echo esc_html( antispambot( $email ) ) ?></a></li>
  16. <?php endif; ?>
  17.  
  18. <?php if ( $phone ) : ?>
  19. <li class="contact-phone"><a href="<?php echo esc_attr( preg_replace( '/\s+/', '', $phone ) ); ?>"><?php echo esc_html( "Whatsapp" ); ?></a></li>
  20. <?php endif; ?>
  21.  
  22. <?php if ( $address ) : ?>
  23. <li class="contact-address"><?php echo wp_kses_post( $address ); ?></li>
  24. <?php endif; ?>
  25. </ul><!-- .contact-details -->
  26. </div><!-- .header-top-left -->
  27. <?php endif; ?>
  28.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement