Guest User

Untitled

a guest
Jul 20th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.12 KB | None | 0 0
  1. <!-- Footer Section -->
  2. <?php
  3. $appointment_options=theme_setup_data();
  4. $footer_setting = wp_parse_args( get_option( 'appointment_options', array() ), $appointment_options );
  5. if ( is_active_sidebar( 'footer-widget-area' ) ) { ?>
  6. <div class="footer-section">
  7. <div class="container">
  8. <div class="row footer-widget-section">
  9. <?php dynamic_sidebar( 'footer-widget-area' ); } ?>
  10. <div class="clearfix"></div>
  11. </div>
  12. </div>
  13. </div>
  14. <!-- /Footer Section -->
  15. <div class="clearfix"></div>
  16. <!-- Footer Copyright Section -->
  17. <div class="footer-copyright-section">
  18. <div class="container">
  19. <div class="row">
  20. <div class="col-md-8">
  21. <div class="footer-copyright">
  22. <?php if( $footer_setting['footer_menu_bar_enabled'] == 0) { ?>
  23. <?php echo $footer_setting[ 'footer_copyright_text']; ?>
  24. </a>
  25. <?php } // end if ?>
  26. </div>
  27. </div>
  28. <?php if($footer_setting['footer_social_media_enabled'] == 0 ) {
  29. $footer_facebook = $footer_setting['footer_social_media_facebook_link'];
  30. $footer_twitter = $footer_setting['footer_social_media_twitter_link'];
  31. $footer_linkdin = $footer_setting['footer_social_media_linkedin_link'];
  32. $footer_googleplus = $footer_setting['footer_social_media_googleplus_link'];
  33. $footer_skype = $footer_setting['footer_social_media_skype_link'];
  34. $footer_instagram = $footer_setting['footer_social_media_instagram_link'];
  35. $footer_youtube = $footer_setting['footer_social_media_youtube_link'];
  36. ?>
  37. <div class="col-md-4">
  38.  
  39. <?php echo do_shortcode("[smbtoolbar]"); ?>
  40.  
  41. </div>
  42. <?php } ?>
  43. </div>
  44. </div>
  45. </div>
  46. <!-- /Footer Copyright Section -->
  47. <!--Scroll To Top-->
  48. <a href="#" class="hc_scrollup"><i class="fa fa-chevron-up"></i></a>
  49. <!--/Scroll To Top-->
  50. <?php wp_footer(); ?>
  51. </div>
  52. </body>
  53. </html>
Add Comment
Please, Sign In to add comment