Guest User

footer.php

a guest
Jul 23rd, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.45 KB | None | 0 0
  1. <section id="bottom">
  2. <div class="container wow fadeInDown" data-wow-duration="1000ms" data-wow-delay="600ms">
  3. <div class="row"><?php
  4. if( is_active_sidebar( 'footer-widget-area' ) ){
  5. dynamic_sidebar( 'footer-widget-area' );
  6. }else{
  7. $args = array(
  8. 'before_widget' => '<div class="col-md-3 col-sm-6">',
  9. 'after_widget' => '</div>',
  10. 'before_title' => '<div><h2>',
  11. 'after_title' => '</h2></div>' );
  12. the_widget('WP_Widget_Calendar', null, $args);
  13. the_widget('WP_Widget_Archives', null, $args);
  14. the_widget('WP_Widget_Categories', null, $args);
  15. the_widget('WP_Widget_Meta', null, $args);
  16. } ?>
  17. </div>
  18. </div>
  19. </section><!--/#bottom-->
  20. <?php $wl_theme_options = incredible_footer_options(); ?>
  21. <footer id="footer" class="midnight-blue" role="contentinfo">
  22. <div class="container">
  23. <div class="row">
  24. <div class="col-sm-6"><?php
  25. echo esc_attr($wl_theme_options['footer_customizations']." ".$wl_theme_options['developed_by_text']." "); ?>
  26. <a target="_blank" href='<?php if($wl_theme_options["developed_by_link"]!="" ){ echo esc_url($wl_theme_options["developed_by_link"]);} ?>' title="<?php echo esc_attr($wl_theme_options['developed_by_weblizar_text']); ?>">
  27. <?php echo esc_attr($wl_theme_options['developed_by_weblizar_text']); ?>
  28. </a>
  29. </div>
  30. <div class="col-sm-6"><?php
  31. $incredible_social_options = incredible_social_options();
  32. if($incredible_social_options['footer_social_media_enabled']=='on') { ?>
  33. <div class="social">
  34. <ul class="social-share">
  35. <?php if($incredible_social_options['fb_link']!='') { ?>
  36. <li><a href="<?php echo esc_url($incredible_social_options['fb_link']); ?>" target="_blank"><i class="fa fa-facebook"></i></a></li>
  37. <?php } if($incredible_social_options['twitter_link']!='') {?>
  38. <li><a href="<?php echo esc_url($incredible_social_options['twitter_link']); ?>" target="_blank"><i class="fa fa-twitter"></i></a></li>
  39. <?php } if($incredible_social_options['linkedin_link']!='') {?>
  40. <li><a href="<?php echo esc_url($incredible_social_options['linkedin_link']); ?>" target="_blank"><i class="fa fa-linkedin"></i></a></li>
  41. <?php } if($incredible_social_options['instagram']!='') {?>
  42. <li><a href="<?php echo esc_url($incredible_social_options['instagram']); ?>" target="_blank"><i class="fa fa-instagram"></i></a></li>
  43. <?php } if($incredible_social_options['gplus_link']!='') {?>
  44. <li><a href="<?php echo esc_url($incredible_social_options['gplus_link']); ?>" target="_blank"><i class="fa fa-google-plus"></i></a></li>
  45. <?php } if($incredible_social_options['youtube_link']!='') {?>
  46. <li><a href="<?php echo esc_url($incredible_social_options['youtube_link']); ?>" target="_blank"><i class="fa fa-youtube"></i></a></li>
  47. <?php } ?>
  48. </ul>
  49. </div><?php
  50. } ?>
  51. </div>
  52. </div>
  53. </div>
  54. </footer><!--/#footer--><?php
  55. //get_template_part('style-switcher');
  56. $wl_theme_options = incredible_skin_options();
  57. if($wl_theme_options['enable_cust_color']){
  58. require(get_template_directory().'/functions/weblizar-js-css/weblizar_custom_css.php');
  59. }
  60. $wl_theme_options = incredible_gnrl_options(); ?>
  61. <script>
  62. <?php echo $wl_theme_options['google_analytic']; ?>
  63. </script>
  64. <style>
  65. <?php echo $wl_theme_options['custom_css']; ?>
  66. </style>
  67. <?php wp_footer(); ?>
  68. </div>
  69. </body>
  70. </html>
Add Comment
Please, Sign In to add comment