Advertisement
Guest User

WP-paste

a guest
May 5th, 2015
274
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. <?php
  2. /**
  3. * Website footer template
  4. *
  5. * @package Auberge
  6. * @copyright 2015 WebMan - Oliver Juhas
  7. * @version 1.0
  8. */
  9.  
  10.  
  11.  
  12.  
  13.  
  14. if ( ! apply_filters( 'wmhook_disable_footer', false ) ) {
  15.  
  16. /**
  17. * Content
  18. */
  19.  
  20. wmhook_content_bottom();
  21.  
  22. wmhook_content_after();
  23.  
  24.  
  25.  
  26. /**
  27. * Footer
  28. */
  29.  
  30. wmhook_footer_before();
  31.  
  32. wmhook_footer_top();
  33.  
  34. wmhook_footer();
  35.  
  36. wmhook_footer_bottom();
  37.  
  38. wmhook_footer_after();
  39.  
  40. } // /wmhook_disable_footer
  41.  
  42.  
  43.  
  44. /**
  45. * Body and WordPress footer
  46. */
  47.  
  48. wmhook_body_bottom();
  49.  
  50. wp_footer();
  51.  
  52. ?>
  53.  
  54. </body>
  55.  
  56. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement