Guest User

Untitled

a guest
May 9th, 2018
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 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-12">
  21. <?php
  22. if( $current_options['footer_copyright_text'] != '' ) { ?>
  23. <?php echo $current_options['footer_copyright_text']; ?>
  24. <?php } ?>
  25. </div>
  26.  
  27. </div>
  28. </div>
  29. </div>
  30. <!-- Copyrights -->
  31.  
  32. </footer>
  33. <!-- /End of Footer Section -->
  34.  
  35. <!--Scroll To Top-->
  36. <a href="#" class="scrollup"><i class="fa fa-chevron-up"></i></a>
  37. <!--/End of Scroll To Top-->
  38. <?php wp_footer(); ?>
  39. </div>
  40. </body>
  41. </html>
Add Comment
Please, Sign In to add comment