Header and Footer Templates — a practical guide to WordPress header footer templates with clear examples you can reuse in real projects.
WordPress Theme Development Series (12/96). Prefer one article? Read the complete WordPress theme development tutorial.
Short description
Use `get_header()` and `get_footer()` so navigation, meta, and scripts stay consistent.
Include header/footer
<?php get_header(); ?>
<!-- page content -->
<?php get_footer(); ?>