Move wp_footer() from footer template into base.php for easier footer customization and DRY

This commit is contained in:
Michael Silber
2014-09-28 10:18:24 -04:00
parent c5488950f7
commit 977a76cc42
2 changed files with 2 additions and 2 deletions

View File

@@ -27,5 +27,7 @@
<?php get_template_part('templates/footer'); ?> <?php get_template_part('templates/footer'); ?>
<?php wp_footer(); ?>
</body> </body>
</html> </html>

View File

@@ -3,5 +3,3 @@
<?php dynamic_sidebar('sidebar-footer'); ?> <?php dynamic_sidebar('sidebar-footer'); ?>
</div> </div>
</footer> </footer>
<?php wp_footer(); ?>