| 1234567891011 |
- <?php
- /**
- * Default footer. Now renders the full footer (parts/footer-full.html) so every page
- * gets it, whether it calls get_footer() or get_footer('full'). The old minimal footer
- * (parts/footer.html) is retained but no longer wired up.
- */
- block_template_part( 'footer-full' );
- wp_footer();
- ?>
- </body>
- </html>
|