Advertisement
Guest User

IndyOwls-footer

a guest
Mar 12th, 2012
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. <?php
  2.  
  3. /*
  4.  
  5. Footer
  6. Establishes the widgetized footer and static post-footer section of iFeature.
  7. Copyright (C) 2011 CyberChimps
  8. Version 2.0
  9.  
  10. */
  11.  
  12. global $options, $themeslug;
  13.  
  14. ?>
  15.  
  16. <?php if ($options->get($themeslug.'_disable_footer') != "0"):?>
  17.  
  18. </div><!--end container wrap-->
  19.  
  20. <div id="footer">
  21. <div class="container">
  22. <div class="row">
  23.  
  24. <!-- Begin @synapse footer hook content-->
  25. <?php synapse_footer(); ?>
  26. <!-- End @synapse footer hook content-->
  27.  
  28. <?php endif;?>
  29.  
  30.  
  31. </div><!--end footer_wrap-->
  32. </div><!--end footer-->
  33. </div>
  34.  
  35. <?php if ($options->get($themeslug.'_disable_afterfooter') != "0"):?>
  36.  
  37. <div id="afterfooter">
  38. <div id="afterfooterwrap">
  39. <div class="row">
  40. <!-- Begin @synapse afterfooter hook content-->
  41. <?php synapse_secondary_footer(); ?>
  42. <!-- End @synapse afterfooter hook content-->
  43.  
  44. </div> <!--end afterfooterwrap-->
  45. </div> <!--end afterfooter-->
  46. </div>
  47. <?php endif;?>
  48.  
  49. <?php wp_footer(); ?>
  50. </body>
  51.  
  52. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement