Advertisement
adeldima

Untitled

Feb 12th, 2012
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1.  
  2. </div><!-- #main -->
  3.  
  4. <?php
  5.  
  6. // action hook for placing content above the footer
  7. thematic_abovefooter();
  8.  
  9. ?>
  10.  
  11. <div id="footer">
  12.  
  13. <?php
  14.  
  15. // action hook creating the footer
  16. thematic_footer();
  17.  
  18. ?>
  19.  
  20. </div><!-- #footer -->
  21.  
  22. <?php
  23.  
  24. // action hook for placing content below the footer
  25. thematic_belowfooter();
  26.  
  27. if (apply_filters('thematic_close_wrapper', true)) {
  28. echo '</div><!-- #wrapper .hfeed -->';
  29. }
  30.  
  31. ?>
  32.  
  33. <?php
  34.  
  35. // calling WordPress' footer action hook
  36. wp_footer();
  37.  
  38. // action hook for placing content before closing the BODY tag
  39. thematic_after();
  40.  
  41. ?>
  42.  
  43. </body>
  44. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement