Guest User

Untitled

a guest
Mar 25th, 2019
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.31 KB | None | 0 0
  1. <?php $current_options = wp_parse_args( get_option( 'busiprof_pro_theme_options', array() ), theme_data_setup() ); ?>
  2. <!-- Footer Section -->
  3. <footer class="footer-sidebar">
  4. <!-- Footer Widgets -->
  5. <div class="container">
  6. <div class="row">
  7. <?php if ( is_active_sidebar( 'footer-widget-area' ) )
  8. {
  9. dynamic_sidebar( 'footer-widget-area' );
  10. }
  11. ?>
  12. </div>
  13. </div>
  14. <!-- /End of Footer Widgets -->
  15.  
  16. <!-- Copyrights -->
  17. <div class="site-info">
  18. <div class="container">
  19. <div class="row">
  20. <div class="col-md-7">
  21. <?php
  22. if( $current_options['footer_copyright_text'] != '' ) { ?>
  23. <?php echo $current_options['footer_copyright_text']; ?>
  24. <?php } ?>
  25. </div>
  26. <?php if( $current_options['footer_social_media_enabled'] == 'on' ) { ?>
  27. <div class="col-md-5">
  28. <ul class="social">
  29. <li class="facebook"><a href="<?php echo $current_options['footer_facebook_link']; ?>" data-toggle="tooltip" title="<?php _e('Facebook','busiprof'); ?>"><i class="fa fa-facebook"></i></a></li>
  30. <li class="twitter"><a href="<?php echo $current_options['footer_twitter_link']; ?>" data-toggle="tooltip" title="<?php _e('Twitter','busiprof'); ?>"><i class="fa fa-twitter"></i></a></li>
  31. <li class="linkedin"><a href="<?php echo $current_options['footer_linkedin_link']; ?>" data-toggle="tooltip" title="<?php _e('LinkedIn','busiprof'); ?>"><i class="fa fa-linkedin"></i></a></li>
  32. <li class="googleplus"><a href="<?php echo $current_options['footer_google_link']; ?>" data-toggle="tooltip" title="<?php _e('GooglePlus','busiprof'); ?>"><i class="fa fa-google-plus"></i></a></li>
  33. <li class="skype"><a href="<?php echo $current_options['footer_skype_link']; ?>" data-toggle="tooltip" title="<?php _e('Skype','busiprof'); ?>"><i class="fa fa-skype"></i></a></li>
  34.  
  35. <li class="instagram"><a href="Enter instagram ico url" data-toggle="tooltip" title="<?php _e('Instagram','busiprof'); ?>"><i class="fa fa-instagram"></i></a></li>
  36. </ul>
  37. </div>
  38. <?php } ?>
  39. </div>
  40. </div>
  41. </div>
  42. <!-- Copyrights -->
  43.  
  44. </footer>
  45. <!-- /End of Footer Section -->
  46.  
  47. <!--Scroll To Top-->
  48. <a href="#" class="scrollup"><i class="fa fa-chevron-up"></i></a>
  49. <!--/End of Scroll To Top-->
  50. <?php wp_footer(); ?>
  51. </div>
  52. </body>
  53. </html>
Add Comment
Please, Sign In to add comment