WordPress Template Anatomy

**header.php**

get_header​();
wp_nav_menu​(); ​// (registered in functions.php)
get_search_form​();

The Loop

index​.php
home​.php
archive​.php
page​.php
single​.php
comments_template​();
search​.php
author​.php
404​.php

**sidebar.php**

get_sidebar​()

**footer.php**

get_footer​()

Not Displayed

style​.css               // Theme style
functions​.php           // Theme functions
comments​.php            // Comments template
Comments