2010-08-27, 01:49:09
You should place the get_footer() call near the end of the template file, BEFORE the closing body tag, that is, like this:
For a sample with div wrappers, look at the end of template.php of the Default_Simple theme. It's inside a <div id="footer">...
BTW, don't forget to put the tag between <?php and ?>
Code:
...
<?php get_footer(); ?>
</body>
</html>
For a sample with div wrappers, look at the end of template.php of the Default_Simple theme. It's inside a <div id="footer">...
BTW, don't forget to put the tag between <?php and ?>