Guest User

Untitled

a guest
Aug 14th, 2018
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.10 KB | None | 0 0
  1. <?php get_template_part('index', 'team'); ?>
  2. <?php
  3. $appointment_options=theme_setup_data();
  4. $footer_callout_setting = wp_parse_args( get_option( 'appointment_options', array() ), $appointment_options );
  5. if($footer_callout_setting['front_callout_enable'] == 0 ) { ?>
  6. <!-- Top Contact Detail Section -->
  7. <div class="footer-contact-detail-section">
  8. <div class="container">
  9.  
  10. <?php ?>
  11. <div class="row">
  12. <div class="col-md-12">
  13.  
  14. <div class="footer-section-heading-title"><h1><?php echo $footer_callout_setting['front_contact_title']; ?></h1></div>
  15. </div>
  16. </div>
  17.  
  18. <div class="row">
  19. <div class="col-md-4">
  20. <div class="footer-contact-area">
  21. <div class="media">
  22. <div class="footer-contact-icon">
  23. <i class="fa <?php echo $footer_callout_setting['contact_one_icon'];?>"></i>
  24. </div>
  25. <div class="media-body">
  26. <h6><?php echo $footer_callout_setting['front_contact1_title']; ?></h6>
  27. <h4><?php echo $footer_callout_setting['front_contact1_val'];?></h4>
  28. </div>
  29. </div>
  30. </div>
  31. </div>
  32. <div class="col-md-4">
  33. <div class="footer-contact-area">
  34. <div class="media">
  35. <div class="footer-contact-icon">
  36. <i class="fa <?php echo $footer_callout_setting['contact_two_icon']; ?>"></i>
  37. </div>
  38. <div class="media-body">
  39. <h6><?php echo $footer_callout_setting['front_contact2_title']; ?></h6>
  40. <h4><?php echo $footer_callout_setting['front_contact2_val']; ?></h4>
  41. </div>
  42. </div>
  43. </div>
  44. </div>
  45. <div class="col-md-4">
  46. <div class="footer-contact-area">
  47. <div class="media">
  48. <div class="footer-contact-icon">
  49. <i class="fa <?php echo $footer_callout_setting['contact_three_icon']; ?>"></i>
  50. </div>
  51. <div class="media-body">
  52. <h6><?php echo $footer_callout_setting['front_contact3_title']; ?></h6>
  53. <h4><?php echo $footer_callout_setting['front_contact3_val']; ?></h4>
  54. </div>
  55. </div>
  56. </div>
  57. </div>
  58. </div>
  59. </div>
  60. </div>
  61. <!-- /Top Contact Detail Section -->
  62. <div class="clearfix"></div>
  63. <?php } ?>
Add Comment
Please, Sign In to add comment