Advertisement
Guest User

footer.php

a guest
Oct 28th, 2012
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.43 KB | None | 0 0
  1. <?php
  2. /**
  3. * Footer template used by Eclipse.
  4. *
  5. * Authors: Tyler Cunningham, Trent Lapinski
  6. * Copyright: © 2012
  7. * {@link http://cyberchimps.com/ CyberChimps LLC}
  8. *
  9. * Released under the terms of the GNU General Public License.
  10. * You should have received a copy of the GNU General Public License,
  11. * along with this software. In the main directory, see: /licensing/
  12. * If not, see: {@link http://www.gnu.org/licenses/}.
  13. *
  14. * @package Eclipse.
  15. * @since 1.0
  16. */
  17.  
  18. global $options, $ec_themeslug;
  19.  
  20. ?>
  21.  
  22. <!-- For sticky footer -->
  23. <div class="push"></div>
  24. </div> <!-- End of wrapper -->
  25.  
  26. </div>
  27. <?php if ($options->get($ec_themeslug.'_disable_footer') != "0"):?>
  28.  
  29. <div id="footer">
  30. <div class="container">
  31. <div class="row">
  32.  
  33. <!-- Begin @response footer hook content-->
  34. <?php response_footer(); ?>
  35. <!-- End @response footer hook content-->
  36.  
  37. </div> <!--end row-->
  38. </div> <!--end container-->
  39. </div> <!--end footer-->
  40.  
  41. <?php endif;?>
  42.  
  43. <div id="afterfooter">
  44. <div id="afterfooterwrap">
  45. <div class="container">
  46. <div class="row">
  47.  
  48. <!-- Begin @response afterfooter hook content-->
  49. <?php response_secondary_footer(); ?>
  50. <!-- End @response afterfooter hook content-->
  51.  
  52. </div> <!--end row-->
  53. </div> <!--end container-->
  54. </div> <!--end afterfooterwrap-->
  55. </div> <!--end afterfooter-->
  56.  
  57.  
  58.  
  59. <?php wp_footer(); ?>
  60.  
  61. </body>
  62.  
  63. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement