Template Hierarchy:
1) Which template files will WordPress use when it displays a certain type of page?
The General Idea
WordPress uses the Query String — information contained within each link on your web site — to decide which template or set of templates will be used to display the page. First, WordPress matches every Query String to query types — i.e. it decides what type of page (a search page, a category page, the home page etc.) is being requested. Example https://www.digamberpradhan.com/?s=asdf this hyperlink will result in a search page.
Templates are then chosen — and web page content is generated — in the order suggested by the WordPress Template hierarchy, depending upon what templates are available in a particular WordPress Theme.
WordPress looks for template files with specific names in the current Theme’s directory and uses the first matching template file listed under the appropriate query section below.
With the exception of the basic index.php template file, Theme developers can choose whether they want to implement a particular template file or not. If WordPress cannot find a template file with a matching name, it skips down to the next file name in the hierarchy. If WordPress cannot find any matching template file, index.php (the Theme’s home page template file) will be used.
The Template Hierarchy in Detail
https://codex.wordpress.org/Template_Hierarchy
Home Page display
Template file used to render the Blog Posts Index, whether on the site front page or on a static page. Note: on the Site Front Page, the Front Page template takes precedence over the Blog Posts Index (Home) template.
- home.php
- index.php
Front Page display
Template file used to render the Site Front Page, whether the front page displays the Blog Posts Index or a static page. The Front Page template takes precedence over the Blog Posts Index (Home) template.
- front-page.php – Used for both Your latest posts or A static page as set in the Front page displays section of Settings -> Reading
- Page display rules – When Front page is set in the Front page displays section of Settings -> Reading
- Home Page display rules – When Posts page is set in the Front page displays section of Settings -> Reading
Single Post display
Template file used to render a single post page.
- single-{post_type}.php – If the post type were product, WordPress would look for single-product.php.
- single.php
- index.php
Page display
Template file used to render a static page (page post-type)
- custom template file – The Page Template assigned to the Page. See get_page_templates().
- page-{slug}.php – If the page slug is recent-news, WordPress will look to use page-recent-news.php
- page-{id}.php – If the page ID is 6, WordPress will look to use page-6.php
- page.php
- index.php
Category display
Template file used to render a Category Archive Index page
- category-{slug}.php – If the category’s slug were news, WordPress would look for category-news.php
- category-{id}.php – If the category’s ID were 6, WordPress would look for category-6.php
- category.php
- archive.php
- index.php
Tag display
Template file used to render a Tag Archive Index page
- tag-{slug}.php – If the tag’s slug were sometag, WordPress would look for tag-sometag.php
- tag-{id}.php – If the tag’s ID were 6, WordPress would look for tag-6.php
- tag.php
- archive.php
- index.php
Custom Taxonomies display
Template file used to render the Archive Index page for a Custom Taxonomy
- taxonomy-{taxonomy}-{term}.php – If the taxonomy were sometax, and taxonomy’s term were someterm WordPress would look for taxonomy-sometax-someterm.php. In the case of Post Formats, the taxonomy is ‘post_format’ and the terms are ‘post-format-{format}. i.e. taxonomy-post_format-post-format-link.php
- taxonomy-{taxonomy}.php – If the taxonomy were sometax, WordPress would look for taxonomy-sometax.php
- taxonomy.php
- archive.php
- index.php
Custom Post Types display
Template file used to render the Archive Index page for a Custom Post Type
- archive-{post_type}.php – If the post type were product, WordPress would look for archive-product.php.
- archive.php
- index.php
(For rendering a single custom post type, refer to the Single Post display section above.)
Author display
Template file used to render an Author Archive Index page
- author-{nicename}.php – If the author’s nice name were rami, WordPress would look for author-rami.php.
- author-{id}.php – If the author’s ID were 6, WordPress would look for author-6.php.
- author.php
- archive.php
- index.php
Date display
Template file used to render a Date-Based Archive Index page
- date.php
- archive.php
- index.php
Search Result display
Template file used to render a Search Results Index page
- search.php
- index.php
404 (Not Found) display
Template file used to render a Server 404 error page
- 404.php
- index.php
Attachment display
Template file used to render a single attachment (attachment post-type) page
- MIME_type.php – it can be any MIME type (image.php, video.php, application.php). For text/plain, in order:
- text.php
- plain.php
- textplain.php
- attachment.php
- single-attachment.php
- single.php
- index.php
Leave a Reply