Guest User

Untitled

a guest
Apr 18th, 2016
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.74 KB | None | 0 0
  1. <!-- Widgets Section -->
  2. <?php
  3. $rambo_pro_theme_options = theme_data_setup();
  4. $current_options = wp_parse_args( get_option( 'rambo_pro_theme_options', array() ), $rambo_pro_theme_options ); ?>
  5. <div class="container">
  6. <!-- Testimonial page --->
  7. <?php if($current_options['service_testimonial_enabled'] == 'on') { ?>
  8. <?php get_template_part('testimonials','page'); ?>
  9. <?php } ?>
  10.  
  11. <?php if($current_options['service_client_strip_enabled'] == 'on') { ?>
  12. <?php get_template_part('client','strip'); ?>
  13. <?php } ?>
  14. <!---End Client-Strip-->
  15. </div>
  16. <div class="hero-widgets-section">
  17. <div class="container">
  18.  
  19. <div class="row">
  20. <?php if ( is_active_sidebar( 'footer-widget-area' ) )
  21. {?>
  22. <div class="">
  23. <?php dynamic_sidebar( 'footer-widget-area' ); ?>
  24. </div>
  25. <?php } ?>
  26. </div>
  27. </div>
  28. </div>
  29. <!-- /Widgets Section -->
  30. <?php
  31. $rambo_pro_theme_options = theme_data_setup();
  32. $current_options = wp_parse_args( get_option( 'rambo_pro_theme_options', array() ), $rambo_pro_theme_options ); ?>
  33.  
  34. <!-- Footer Section -->
  35. <div class="footer-section">
  36. <div class="container">
  37. <div class="row">
  38. <div class="span8">
  39. <p><?php echo $current_options['footer_copyright'];?>
  40. </p>
  41. </div>
  42. <?php if($current_options['footer_social_media_enabled']==true) { ?>
  43. <div class="span4">
  44. <div class="footer_social pull-right">
  45. <a href="<?php if($current_options['social_media_facebook_link']!='') { echo esc_attr($current_options['social_media_facebook_link']); } else { echo "#"; } ?>" class="facebook">&nbsp;</a>
  46. <a href="<?php if($current_options['social_media_twitter_link']!='') { echo esc_attr($current_options['social_media_twitter_link']); } else { echo "#"; } ?>" class="twitter">&nbsp;</a>
  47. <a href="<?php if($current_options['social_media_linkedin_link']!='') { echo esc_attr($current_options['social_media_linkedin_link']); } else { echo "#"; } ?>" class="linked-in">&nbsp;</a>
  48. <a href="<?php if($current_options['social_media_google_plus']!='') { echo esc_attr($current_options['social_media_google_plus']); } else { echo "#"; } ?>" class="google_plus">&nbsp;</a>
  49. </div>
  50. </div>
  51. <?php } ?>
  52.  
  53. </div>
  54. </div>
  55. </div>
  56. <!-- Footer Section-->
  57. <?php
  58. $rambo_pro_theme_options = theme_data_setup();
  59. $current_options = wp_parse_args( get_option( 'rambo_pro_theme_options', array() ), $rambo_pro_theme_options );
  60. if($current_options['webrit_custom_css']!='') { ?>
  61. <style>
  62. <?php echo $current_options['webrit_custom_css']; ?>
  63. </style>
  64. <?php }
  65. if($current_options['google_analytics']!='') { ?>
  66. <script type="text/javascript">
  67. <?php echo $current_options['google_analytics']; ?>
  68. </script>
  69. <?php }
  70. wp_footer(); ?>
  71. </div><!-- End of wrapper div -->
  72. </body>
  73. </html>
Add Comment
Please, Sign In to add comment