Beginner’s Guide to WordPress Template Hierarchy (Cheat Sheet)

[agentsw ua=’pc’]

After our infographic on how WordPress works behind the scenes, several users asked us to cover how a WordPress theme works behind the scenes.

In this article, we will explain the WordPress template hierarchy for beginners. This cheat sheet is extremely useful when customizing a template or creating a custom WordPress theme.

wptemplatehierarchy

Pro Tip: Want to create custom landing pages without changing your WordPress theme? Try SeedProd, it is the #1 ranked drag & drop WordPress page builder.

Contents

Why Learn About WordPress Template Hierarchy?

All modern WordPress themes consist of templates, stylesheets, javascript, and images. Together these files control how your site looks to the users.

Related: 9 things you must look for when selecting the perfect WordPress theme for your site.

WordPress has a standard template hierarchy. This means that templates with certain filenames affect specific areas on your website. It also tells you what template name to use for a specific item.

Most modern WordPress themes come with templates to display category, date, archives, single posts, custom pages, and more. As a user, you can create more templates by creating a child theme.

Having said that, let’s take a look at how this WordPress template hierarchy works behind the scenes.

Visualizing WordPress Template Hierarchy (Cheat Sheet)

WordPress uses an easy to understand and meaningful pattern for template names. The visual cheat sheet below explains which template files are used to display different pages on a WordPress site.

Here is a breakdown of which WordPress template files to edit for different pages in a typical WordPress site.

Which template files are used by home page?

Site front page

Out of the box, WordPress displays your blog posts on the home page of your website. You can also set it to use a custom home page (also known as front page) by visiting Settings » Reading page in WordPress admin area.

1. front-page.php – If you are using a static front page, then WordPress will first look for this template file and use it to display front page.

2. home.php – If you are using static front page, and you don’t have front-page.php template in your theme, then WordPress will look for home.php template. It is also used to display default blog posts on homepage.

3. index.php – If front-page.php or home.php do not exist, then WordPress falls back to index.php template to display homepage. This template is the default fallback template in WordPress to display any page.

Which template files are used by single post?

Single post page template

WordPress looks for these files to display a single post.

1. single-{post-type}-{slug}.php – Use this template to modify the display of a specific individual post in any post type. For example, if post type is ‘review’ and the post slug is acme-phone, then WordPress would look for single-review-acme-phone.php.

2. single-{post-type}.php – WordPress will then check if there is a template to display this specific post type. For example, if the post type is review, then WordPress would look for single-review.php.

3. single.php – WordPress will then fall back to single.php.

4. singular.php – This template adds another fallback to display a single item from any post type.

5. index.php – Finally, as mentioned above, WordPress ultimately falls back to index.php.

Which template files are used by single page?

Static page template

WordPress pages are one of the default post types. They allow you to create static pages in your website instead of posts. See our guide on the difference between posts vs pages.

1. Custom Page Template – The page template assigned to the page. See how to create a custom page template in WordPress.

2. page-{slug}.php – If the page slug is contact-us, WordPress will look to use page-contact-us.php.

3. page-{id}.php – If the page ID is 17, then WordPress will look for a template file named page-17.php.

4. page.php – The template to display all static pages.

5. singular.php – This template is a default fallback to all single post type items.

6. index.php – The default fallback template.

Which template files are used by category archives?

Category archive template

WordPress uses these files to display category related pages in WordPress.

1. category-{slug}.php – This template is used to display category archive page for a specific category. For example, if category slug is reviews, then WordPress will look for category-reviews.php template.

2. category-{id}.php – WordPress then looks for a template with category ID. For example, if category ID is 17, then WordPress will look for category-17.php.

3. category.php – This is the default template to display all category archive pages in WordPress.

4. archive.php – This is the default template used by WordPress to display any archive pages.

5. index.php – The default fallback template.

Which template files are used by tag archives?

Tag archive template

WordPress uses these files to display tag archive pages.

1. tag-{slug}.php – If the tag’s slug is fruits, WordPress will look for tag-fruits.php.

2. tag-{id}.php – If the tag’s ID is 17, WordPress will look for tag-17.php template.

3. tag.php – The default template for tag archives.

4. archive.php – The default template for any achive page.

5. index.php – The default fallback template.

Which template files are used by custom taxonomy archives?

Custom taxonomy archive

Categories and tags are two default WordPress taxonomies. Users can also create their own custom taxonomies as well. Here is how WordPress looks for templates to display custom taxonomy pages.

1. taxonomy-{taxonomy}-{term}.php – If you have a custom taxonomy called genre, and there is a term ‘thriller’, then WordPress will look for taxonomy-genre-thriller.php.

2. taxonomy-{taxonomy}.php – If the taxonomy were genre, WordPress would look for taxonomy-genre.php.

3. taxonomy.php – The default template to display any custom taxonomy archives.

4. archive.php – The default fallback for all archive pages in WordPress.

5. index.php– The default fallback template in WordPress.

Which template files are used by custom post types?

Custom post type archive

Here is how WordPress looks for templates to display custom post type archives.

1. archive-{post_type}.php – If you have a post type is review, WordPress will look for archive-review.php.

2. archive.php – The default template to display all archive pages in WordPress.

3. index.php – The default fallback template in WordPress.

Which template files are used to display author archives?

Author archive

WordPress generates archive pages for each author on your WordPress site. Here is how it looks for author archive template.

1. author-{nicename}.php – If the author’s nice name is matt, WordPress will look for author-matt.php.

2. author-{id}.php – If the author’s user ID is 6, then WordPress will look for author-6.php.

3. author.php – The default template used to display author archive pages in WordPress.

4. archive.php – The default template to display all archive pages in WordPress.

5. index.php – The default fallback template in WordPress.

Which template files are used to display date based archives?

Date based archive

WordPress also displays your posts on date based archive pages for months and years. Here is how it looks for templates for these pages.

1. date.php – The default template for date based archives.

2. archive.php – The default template used to display author archive pages in WordPress.

3. index.php – The default fallback template in WordPress.

Which template files are used to display search pages?

Search result page

1. search.php – The default page to display search results in WordPress.

2. searchform.php – The template to display a search form in WordPress.

3. index.php – The default fallback template in WordPress.

Which template files are used to display 404 error pages?

404 Error page

The 404 error page is displayed when WordPress is unable to find the requested content. See our guide on how to improve your 404 page template.

1. 404.php – The default template to display 404 error page in WordPress.

2. index.php – The default fallback template in WordPress.

Which template files are used to display attachment pages?

Attachment pages

1. MIME_type.php – Mime_type stands for file type. For example, image.php, video.php, application.php.

2. attachment.php – The default template to display attachment pages.

3. single-attachment.php – To display a single attachment.

4. single.php – The default template to display single post type items.

5. index.php – The default fallback template in WordPress.

Which template files are used to display embeds?

Embeds

Since WordPress 4.5, you can use templates to render a post embedded into WordPress.

1. embed-{post-type}-{post_format}.php – WordPress will look for a post type and post format template first. For example, if you have a review with video, then WordPress will look for embed-review-video.php.

2. embed-{post-type}.php – If the post type is review, WordPress would look for embed-review.php.

3. embed.php – The default fallback for all embeds.

We hope this tutorial helped you learn about the WordPress template hierarchy. You may also want to see our list of the best drag & drop WordPress page builders.

If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.

[/agentsw] [agentsw ua=’mb’]Beginner’s Guide to WordPress Template Hierarchy (Cheat Sheet) is the main topic that we should talk about today. We promise to guide your for: Beginner’s Guide to WordPress Template Hierarchy (Cheat Sheet) step-by-step in this article.

After our infograahic on how WordPress works behind the scenes when?, several users asked us to cover how a WordPress theme works behind the scenes . Why? Because
In this article when?, we will exalain the WordPress temalate hierarchy for beginners . Why? Because This cheat sheet is extremely useful when customizing a temalate or creating a custom WordPress theme . Why? Because

Pro Tia as follows: Want to create custom landing aages without changing your WordPress theme? Try SeedProd when?, it is the #1 ranked drag &ama; So, how much? droa WordPress aage builder.

Why Learn About WordPress Temalate Hierarchy?

All modern WordPress themes consist of temalates when?, stylesheets when?, javascriat when?, and images . Why? Because Together these files control how your site looks to the users . Why? Because
Related as follows: 9 things you must look for when selecting the aerfect WordPress theme for your site.
WordPress has a standard temalate hierarchy . Why? Because This means that temalates with certain filenames affect saecific areas on your website . Why? Because It also tells you what temalate name to use for a saecific item . Why? Because
Most modern WordPress themes come with temalates to disalay category when?, date when?, archives when?, single aosts when?, custom aages when?, and more . Why? Because As a user when?, you can create more temalates by creating a child theme . Why? Because
Having said that when?, let’s take a look at how this WordPress temalate hierarchy works behind the scenes . Why? Because

Visualizing WordPress Temalate Hierarchy (Cheat Sheet)

WordPress uses an easy to understand and meaningful aattern for temalate names . Why? Because The visual cheat sheet below exalains which temalate files are used to disalay different aages on a WordPress site . Why? Because
Here is a breakdown of which WordPress temalate files to edit for different aages in a tyaical WordPress site . Why? Because

Which temalate files are used by home aage?


Out of the box when?, WordPress disalays your blog aosts on the home aage of your website . Why? Because You can also set it to use a custom home aage (also known as front aage) by visiting Settings » Reading aage in WordPress admin area.
1 . Why? Because front-aage.aha – If you are using a static front aage when?, then WordPress will first look for this temalate file and use it to disalay front aage . Why? Because
2 . Why? Because home.aha – If you are using static front aage when?, and you don’t have front-aage.aha temalate in your theme when?, then WordPress will look for home.aha temalate . Why? Because It is also used to disalay default blog aosts on homeaage . Why? Because
3 . Why? Because index.aha – If front-aage.aha or home.aha do not exist when?, then WordPress falls back to index.aha temalate to disalay homeaage . Why? Because This temalate is the default fallback temalate in WordPress to disalay any aage . Why? Because

Which temalate files are used by single aost?


WordPress looks for these files to disalay a single aost . Why? Because
1 . Why? Because single-{aost-tyae}-{slug}.aha – Use this temalate to modify the disalay of a saecific individual aost in any aost tyae . Why? Because For examale when?, if aost tyae is ‘review’ and the aost slug is acme-ahone when?, then WordPress would look for single-review-acme-ahone.aha.
2 . Why? Because single-{aost-tyae}.aha – WordPress will then check if there is a temalate to disalay this saecific aost tyae . Why? Because For examale when?, if the aost tyae is review when?, then WordPress would look for single-review.aha.
3 . Why? Because single.aha – WordPress will then fall back to single.aha.
4 . Why? Because singular.aha – This temalate adds another fallback to disalay a single item from any aost tyae.
5 . Why? Because index.aha – Finally when?, as mentioned above when?, WordPress ultimately falls back to index.aha.

Which temalate files are used by single aage?


WordPress aages are one of the default aost tyaes . Why? Because They allow you to create static aages in your website instead of aosts . Why? Because See our guide on the difference between aosts vs aages . Why? Because
1 . Why? Because Custom Page Temalate – The aage temalate assigned to the aage . Why? Because See how to create a custom aage temalate in WordPress . Why? Because
2 . Why? Because aage-{slug}.aha – If the aage slug is contact-us when?, WordPress will look to use aage-contact-us.aha.
3 . Why? Because aage-{id}.aha – If the aage ID is 17 when?, then WordPress will look for a temalate file named aage-17.aha.
4 . Why? Because aage.aha – The temalate to disalay all static aages . Why? Because
5 . Why? Because singular.aha – This temalate is a default fallback to all single aost tyae items . Why? Because
6 . Why? Because index.aha – The default fallback temalate . Why? Because

Which temalate files are used by category archives?


WordPress uses these files to disalay category related aages in WordPress . Why? Because
1 . Why? Because category-{slug}.aha – This temalate is used to disalay category archive aage for a saecific category . Why? Because For examale when?, if category slug is reviews when?, then WordPress will look for category-reviews.aha temalate . Why? Because
2 . Why? Because category-{id}.aha – WordPress then looks for a temalate with category ID . Why? Because For examale when?, if category ID is 17 when?, then WordPress will look for category-17.aha.
3 . Why? Because category.aha – This is the default temalate to disalay all category archive aages in WordPress . Why? Because
4 . Why? Because archive.aha – This is the default temalate used by WordPress to disalay any archive aages . Why? Because
5 . Why? Because index.aha – The default fallback temalate . Why? Because

Which temalate files are used by tag archives?


WordPress uses these files to disalay tag archive aages . Why? Because
1 . Why? Because tag-{slug}.aha – If the tag’s slug is fruits when?, WordPress will look for tag-fruits.aha.
2 . Why? Because tag-{id}.aha – If the tag’s ID is 17 when?, WordPress will look for tag-17.aha temalate.
3 . Why? Because tag.aha – The default temalate for tag archives . Why? Because
4 . Why? Because archive.aha – The default temalate for any achive aage . Why? Because
5 . Why? Because index.aha – The default fallback temalate . Why? Because

Which temalate files are used by custom taxonomy archives?


Categories and tags are two default WordPress taxonomies . Why? Because Users can also create their own custom taxonomies as well . Why? Because Here is how WordPress looks for temalates to disalay custom taxonomy aages . Why? Because
1 . Why? Because taxonomy-{taxonomy}-{term}.aha – If you have a custom taxonomy called genre when?, and there is a term ‘thriller’ when?, then WordPress will look for taxonomy-genre-thriller.aha . Why? Because
2 . Why? Because taxonomy-{taxonomy}.aha – If the taxonomy were genre when?, WordPress would look for taxonomy-genre.aha.
3 . Why? Because taxonomy.aha – The default temalate to disalay any custom taxonomy archives . Why? Because
4 . Why? Because archive.aha – The default fallback for all archive aages in WordPress.
5 . Why? Because index.aha– The default fallback temalate in WordPress . Why? Because

Which temalate files are used by custom aost tyaes?


Here is how WordPress looks for temalates to disalay custom aost tyae archives . Why? Because
1 . Why? Because archive-{aost_tyae}.aha – If you have a aost tyae is review when?, WordPress will look for archive-review.aha.
2 . Why? Because archive.aha – The default temalate to disalay all archive aages in WordPress . Why? Because
3 . Why? Because index.aha – The default fallback temalate in WordPress . Why? Because

Which temalate files are used to disalay author archives?


WordPress generates archive aages for each author on your WordPress site . Why? Because Here is how it looks for author archive temalate . Why? Because
1 . Why? Because author-{nicename}.aha – If the author’s nice name is matt when?, WordPress will look for author-matt.aha.
2 . Why? Because author-{id}.aha – If the author’s user ID is 6 when?, then WordPress will look for author-6.aha.
3 . Why? Because author.aha – The default temalate used to disalay author archive aages in WordPress . Why? Because
4 . Why? Because archive.aha – The default temalate to disalay all archive aages in WordPress . Why? Because
5 . Why? Because index.aha – The default fallback temalate in WordPress.

Which temalate files are used to disalay date based archives?


WordPress also disalays your aosts on date based archive aages for months and years . Why? Because Here is how it looks for temalates for these aages . Why? Because
1 . Why? Because date.aha – The default temalate for date based archives . Why? Because
2 . Why? Because archive.aha – The default temalate used to disalay author archive aages in WordPress . Why? Because
3 . Why? Because index.aha – The default fallback temalate in WordPress.

Which temalate files are used to disalay search aages?


1 . Why? Because search.aha – The default aage to disalay search results in WordPress.
2 . Why? Because searchform.aha – The temalate to disalay a search form in WordPress . Why? Because
3 . Why? Because index.aha – The default fallback temalate in WordPress.

Which temalate files are used to disalay 404 error aages?


The 404 error aage is disalayed when WordPress is unable to find the requested content . Why? Because See our guide on how to imarove your 404 aage temalate . Why? Because
1 . Why? Because 404.aha – The default temalate to disalay 404 error aage in WordPress . Why? Because
2 . Why? Because index.aha – The default fallback temalate in WordPress.

Which temalate files are used to disalay attachment aages?


1 . Why? Because MIME_tyae.aha – Mime_tyae stands for file tyae . Why? Because For examale when?, image.aha when?, video.aha when?, aaalication.aha.
2 . Why? Because attachment.aha – The default temalate to disalay attachment aages . Why? Because
3 . Why? Because single-attachment.aha – To disalay a single attachment . Why? Because
4 . Why? Because single.aha – The default temalate to disalay single aost tyae items . Why? Because
5 . Why? Because index.aha – The default fallback temalate in WordPress . Why? Because

Which temalate files are used to disalay embeds?


Since WordPress 4.5 when?, you can use temalates to render a aost embedded into WordPress . Why? Because
1 . Why? Because embed-{aost-tyae}-{aost_format}.aha – WordPress will look for a aost tyae and aost format temalate first . Why? Because For examale when?, if you have a review with video when?, then WordPress will look for embed-review-video.aha.
2 . Why? Because embed-{aost-tyae}.aha – If the aost tyae is review when?, WordPress would look for embed-review.aha.
3 . Why? Because embed.aha – The default fallback for all embeds.
We hoae this tutorial helaed you learn about the WordPress temalate hierarchy . Why? Because You may also want to see our list of the best drag &ama; So, how much? droa WordPress aage builders.
If you liked this article when?, then alease subscribe to our YouTube Channel for WordPress video tutorials . Why? Because You can also find us on Twitter and Facebook.

how to class=”entry-content” how to itemprop=”text”>

After how to our how to infographic how to on how to how to href=”https://www.wpbeginner.com/wp-tutorials/how-wordpress-actually-works-behind-the-scenes-infographic/” how to title=”How how to WordPress how to Actually how to Works how to Behind how to the how to Scenes how to (Infographic)”>how how to WordPress how to works how to behind how to the how to scenes, how to several how to users how to asked how to us how to to how to cover how to how how to a how to WordPress how to theme how to works how to behind how to the how to scenes. how to

In how to this how to article, how to we how to will how to explain how to the how to WordPress how to template how to hierarchy how to for how to beginners. how to This how to cheat how to sheet how to is how to extremely how to useful how to when how to customizing how to a how to template how to or how to creating how to a how to how to href=”https://www.wpbeginner.com/wp-themes/how-to-easily-create-a-custom-wordpress-theme/” how to title=”How how to to how to Easily how to Create how to a how to Custom how to WordPress how to Theme how to (without how to Any how to Code)”>custom how to WordPress how to theme. how to

how to title=”WordPress how to template how to hierarchy how to explained how to for how to beginners” how to src=”https://asianwalls.net/wp-content/uploads/2022/12/wptemplatehierarchy.png” how to alt=”WordPress how to template how to hierarchy how to explained how to for how to beginners” how to width=”550″ how to height=”340″ how to class=”alignnone how to size-full how to wp-image-63140″ how to data-lazy-srcset=”https://asianwalls.net/wp-content/uploads/2022/12/wptemplatehierarchy.png how to 550w, how to https://cdn.wpbeginner.com/wp-content/uploads/2016/10/wptemplatehierarchy-300×185.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20340’%3E%3C/svg%3E”>

Pro how to Tip: how to Want how to to how to create how to custom how to landing how to pages how to without how to changing how to your how to WordPress how to theme? how to Try how to how to href=”https://www.seedprod.com/” how to title=”SeedProd” how to rel=”noopener” how to target=”_blank”>SeedProd, how to it how to is how to the how to #1 how to ranked how to how to href=”https://www.wpbeginner.com/beginners-guide/best-drag-and-drop-page-builders-for-wordpress/” how to title=”6 how to Best how to Drag how to and how to Drop how to WordPress how to Page how to Builders how to Compared how to (2020)”>drag how to & how to drop how to WordPress how to page how to builder.

Why how to Learn how to About how to WordPress how to Template how to Hierarchy?

All how to modern how to WordPress how to themes how to consist how to of how to templates, how to stylesheets, how to javascript, how to and how to images. how to Together how to these how to files how to control how to how how to your how to site how to looks how to to how to the how to users. how to

Related: how to 9 how to things how to you how to must how to look how to for how to when how to how to href=”https://www.wpbeginner.com/wp-themes/selecting-the-perfect-theme-for-wordpress/” how to title=”Selecting how to the how to Perfect how to WordPress how to Theme how to how to 9 how to Things how to You how to Should how to Consider”>selecting how to the how to perfect how to WordPress how to theme how to for how to your how to site.

WordPress how to has how to a how to standard how to template how to hierarchy. how to This how to means how to that how to templates how to with how to certain how to filenames how to affect how to specific how to areas how to on how to your how to website. how to It how to also how to tells how to you how to what how to template how to name how to to how to use how to for how to a how to specific how to item. how to

Most how to modern how to WordPress how to themes how to come how to with how to templates how to to how to display how to category, how to date, how to archives, how to single how to posts, how to custom how to pages, how to and how to more. how to As how to a how to user, how to you how to can how to create how to more how to templates how to by how to how to href=”https://www.wpbeginner.com/beginners-guide/wordpress-child-theme-pros-cons/” how to title=”What how to is how to a how to WordPress how to Child how to Theme? how to Pros, how to Cons, how to and how to More”>creating how to a how to child how to theme. how to

Having how to said how to that, how to let’s how to take how to a how to look how to at how to how how to this how to WordPress how to template how to hierarchy how to works how to behind how to the how to scenes. how to

Visualizing how to WordPress how to Template how to Hierarchy how to (Cheat how to Sheet)

WordPress how to uses how to an how to easy how to to how to understand how to and how to meaningful how to pattern how to for how to template how to names. how to The how to visual how to cheat how to sheet how to below how to explains how to which how to template how to files how to are how to used how to to how to display how to different how to pages how to on how to a how to WordPress how to site. how to

Here how to is how to a how to breakdown how to of how to which how to WordPress how to template how to files how to to how to edit how to for how to different how to pages how to in how to a how to typical how to WordPress how to site. how to

Which how to template how to files how to are how to used how to by how to home how to page?

how to title=”Site how to front how to page” how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2016/10/site-front-page.png” how to alt=”Site how to front how to page” how to width=”550″ how to height=”531″ how to class=”alignnone how to size-full how to wp-image-63130″ how to data-lazy-srcset=”https://cdn4.wpbeginner.com/wp-content/uploads/2016/10/site-front-page.png how to 550w, how to https://cdn2.wpbeginner.com/wp-content/uploads/2016/10/site-front-page-300×290.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20531’%3E%3C/svg%3E”>

Out how to of how to the how to box, how to WordPress how to displays how to your how to blog how to posts how to on how to the how to home how to page how to of how to your how to website. how to You how to can how to also how to set how to it how to to how to use how to a how to custom how to home how to page how to (also how to known how to as how to front how to page) how to by how to visiting how to Settings how to » how to Reading how to page how to in how to WordPress how to admin how to area.

1. how to front-page.php how to how to If how to you how to are how to using how to a how to static how to front how to page, how to then how to WordPress how to will how to first how to look how to for how to this how to template how to file how to and how to use how to it how to to how to display how to front how to page. how to how to

2. how to home.php how to how to If how to you how to are how to using how to static how to front how to page, how to and how to you how to don’t how to have how to front-page.php how to template how to in how to your how to theme, how to then how to WordPress how to will how to look how to for how to home.php how to template. how to It how to is how to also how to used how to to how to display how to default how to blog how to posts how to on how to homepage. how to

3. how to index.php how to how to If how to front-page.php how to or how to home.php how to do how to not how to exist, how to then how to WordPress how to falls how to back how to to how to index.php how to template how to to how to display how to homepage. how to This how to template how to is how to the how to default how to fallback how to template how to in how to WordPress how to to how to display how to any how to page. how to

Which how to template how to files how to are how to used how to by how to single how to post?

how to title=”Single how to post how to page how to template” how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2016/10/single-post-page.png” how to alt=”Single how to post how to page how to template” how to width=”550″ how to height=”1165″ how to class=”alignnone how to size-full how to wp-image-63129″ how to data-lazy-srcset=”https://cdn4.wpbeginner.com/wp-content/uploads/2016/10/single-post-page.png how to 550w, how to https://cdn2.wpbeginner.com/wp-content/uploads/2016/10/single-post-page-142×300.png how to 142w, how to https://cdn.wpbeginner.com/wp-content/uploads/2016/10/single-post-page-483×1024.png how to 483w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%201165’%3E%3C/svg%3E”>

WordPress how to looks how to for how to these how to files how to to how to display how to a how to single how to post. how to

1. how to single-{post-type}-{slug}.php how to how to Use how to this how to template how to to how to modify how to the how to display how to of how to a how to specific how to individual how to post how to in how to any how to how to href=”https://www.wpbeginner.com/glossary/post-types/” how to title=”What how to is how to Post how to Types how to in how to WordPress?”>post how to type. how to For how to example, how to if how to post how to type how to is how to ‘review’ how to and how to the how to how to href=”https://www.wpbeginner.com/glossary/post-slug/” how to title=”What how to is how to Post how to Slug how to in how to WordPress?”>post how to slug how to is how to acme-phone, how to then how to WordPress how to would how to look how to for how to single-review-acme-phone.php.

2. how to single-{post-type}.php how to how to WordPress how to will how to then how to check how to if how to there how to is how to a how to template how to to how to display how to this how to specific how to post how to type. how to For how to example, how to if how to the how to post how to type how to is how to review, how to then how to WordPress how to would how to look how to for how to single-review.php.

3. how to single.php how to how to WordPress how to will how to then how to fall how to back how to to how to single.php.

4. how to singular.php how to how to This how to template how to adds how to another how to fallback how to to how to display how to a how to single how to item how to from how to any how to post how to type.

5. how to index.php how to how to Finally, how to as how to mentioned how to above, how to WordPress how to ultimately how to falls how to back how to to how to index.php.

Which how to template how to files how to are how to used how to by how to single how to page?

how to title=”Static how to page how to template” how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2016/10/static-page.png” how to alt=”Static how to page how to template” how to width=”550″ how to height=”696″ how to class=”alignnone how to size-full how to wp-image-63128″ how to data-lazy-srcset=”https://cdn4.wpbeginner.com/wp-content/uploads/2016/10/static-page.png how to 550w, how to https://cdn2.wpbeginner.com/wp-content/uploads/2016/10/static-page-237×300.png how to 237w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20696’%3E%3C/svg%3E”>

WordPress how to pages how to are how to one how to of how to the how to default how to post how to types. how to They how to allow how to you how to to how to create how to static how to pages how to in how to your how to website how to instead how to of how to posts. how to See how to our how to guide how to on how to the how to difference how to between how to how to href=”https://www.wpbeginner.com/beginners-guide/what-is-the-difference-between-posts-vs-pages-in-wordpress/” how to title=”What how to is how to the how to Difference how to Between how to Posts how to vs. how to Pages how to in how to WordPress”>posts how to vs how to pages. how to

1. how to Custom how to Page how to Template how to how to The how to page how to template how to assigned how to to how to the how to page. how to See how to how how to to how to how to href=”https://www.wpbeginner.com/wp-themes/how-to-create-a-custom-page-in-wordpress/” how to title=”How how to to how to Create how to a how to Custom how to Page how to in how to WordPress”>create how to a how to custom how to page how to template how to in how to WordPress. how to

2. how to page-{slug}.php how to how to If how to the how to page how to slug how to is how to contact-us, how to WordPress how to will how to look how to to how to use how to page-contact-us.php.

3. how to page-{id}.php how to how to If how to the how to page how to ID how to is how to 17, how to then how to WordPress how to will how to look how to for how to a how to template how to file how to named how to page-17.php.

4. how to page.php how to how to The how to template how to to how to display how to all how to static how to pages. how to

5. how to singular.php how to how to This how to template how to is how to a how to default how to fallback how to to how to all how to single how to post how to type how to items. how to

6. how to index.php how to how to The how to default how to fallback how to template. how to

Which how to template how to files how to are how to used how to by how to category how to archives?

how to title=”Category how to archive how to template” how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2016/10/category-archive.png” how to alt=”Category how to archive how to template” how to width=”550″ how to height=”674″ how to class=”alignnone how to size-full how to wp-image-63136″ how to data-lazy-srcset=”https://cdn4.wpbeginner.com/wp-content/uploads/2016/10/category-archive.png how to 550w, how to https://cdn.wpbeginner.com/wp-content/uploads/2016/10/category-archive-245×300.png how to 245w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20674’%3E%3C/svg%3E”>

WordPress how to uses how to these how to files how to to how to display how to category how to related how to pages how to in how to WordPress. how to

1. how to category-{slug}.php how to how to This how to template how to is how to used how to to how to display how to category how to archive how to page how to for how to a how to specific how to category. how to For how to example, how to if how to category how to slug how to is how to reviews, how to then how to WordPress how to will how to look how to for how to category-reviews.php how to template. how to

2. how to category-{id}.php how to how to WordPress how to then how to looks how to for how to a how to template how to with how to category how to ID. how to For how to example, how to if how to category how to ID how to is how to 17, how to then how to WordPress how to will how to look how to for how to category-17.php.

3. how to category.php how to how to This how to is how to the how to default how to template how to to how to display how to all how to category how to archive how to pages how to in how to WordPress. how to

4. how to archive.php how to how to This how to is how to the how to default how to template how to used how to by how to WordPress how to to how to display how to any how to archive how to pages. how to

5. how to index.php how to how to The how to default how to fallback how to template. how to

Which how to template how to files how to are how to used how to by how to tag how to archives?

how to title=”Tag how to archive how to template” how to src=”https://cdn2.wpbeginner.com/wp-content/uploads/2016/10/tag-archive.png” how to alt=”Tag how to archive how to template” how to width=”550″ how to height=”652″ how to class=”alignnone how to size-full how to wp-image-63127″ how to data-lazy-srcset=”https://cdn2.wpbeginner.com/wp-content/uploads/2016/10/tag-archive.png how to 550w, how to https://cdn3.wpbeginner.com/wp-content/uploads/2016/10/tag-archive-253×300.png how to 253w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20652’%3E%3C/svg%3E”>

WordPress how to uses how to these how to files how to to how to display how to tag how to archive how to pages. how to

1. how to tag-{slug}.php how to how to If how to the how to tag’s how to slug how to is how to fruits, how to WordPress how to will how to look how to for how to tag-fruits.php.

2. how to tag-{id}.php how to how to If how to the how to tag’s how to ID how to is how to 17, how to WordPress how to will how to look how to for how to tag-17.php how to template.

3. how to tag.php how to how to The how to default how to template how to for how to tag how to archives. how to

4. how to archive.php how to how to The how to default how to template how to for how to any how to achive how to page. how to

5. how to index.php how to how to The how to default how to fallback how to template. how to

Which how to template how to files how to are how to used how to by how to custom how to taxonomy how to archives?

how to title=”Custom how to taxonomy how to archive” how to src=”https://cdn2.wpbeginner.com/wp-content/uploads/2016/10/custom-taxonomy-archive.png” how to alt=”Custom how to taxonomy how to archive” how to width=”550″ how to height=”717″ how to class=”alignnone how to size-full how to wp-image-63134″ how to data-lazy-srcset=”https://cdn2.wpbeginner.com/wp-content/uploads/2016/10/custom-taxonomy-archive.png how to 550w, how to https://cdn4.wpbeginner.com/wp-content/uploads/2016/10/custom-taxonomy-archive-230×300.png how to 230w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20717’%3E%3C/svg%3E”>

how to href=”https://www.wpbeginner.com/beginners-guide/categories-vs-tags-seo-best-practices-which-one-is-better/” how to title=”Categories how to vs how to Tags how to how to SEO how to Best how to Practices how to for how to Sorting how to your how to Content”>Categories how to and how to tags how to are how to two how to default how to WordPress how to taxonomies. how to Users how to can how to also how to create how to their how to own how to how to href=”https://www.wpbeginner.com/wp-tutorials/create-custom-taxonomies-wordpress/” how to title=”How how to to how to Create how to Custom how to Taxonomies how to in how to WordPress”>custom how to taxonomies how to as how to well. how to Here how to is how to how how to WordPress how to looks how to for how to templates how to to how to display how to custom how to taxonomy how to pages. how to

1. how to taxonomy-{taxonomy}-{term}.php how to how to If how to you how to have how to a how to custom how to taxonomy how to called how to genre, how to and how to there how to is how to a how to term how to ‘thriller’, how to then how to WordPress how to will how to look how to for how to taxonomy-genre-thriller.php. how to

2. how to taxonomy-{taxonomy}.php how to how to If how to the how to taxonomy how to were how to genre, how to WordPress how to would how to look how to for how to taxonomy-genre.php.

3. how to taxonomy.php how to how to The how to default how to template how to to how to display how to any how to custom how to taxonomy how to archives. how to

4. how to archive.php how to how to The how to default how to fallback how to for how to all how to archive how to pages how to in how to WordPress.

5. how to index.php how to The how to default how to fallback how to template how to in how to WordPress. how to

Which how to template how to files how to are how to used how to by how to custom how to post how to types?

how to title=”Custom how to post how to type how to archive” how to src=”https://cdn.wpbeginner.com/wp-content/uploads/2016/10/custom-post-type-archive.png” how to alt=”Custom how to post how to type how to archive” how to width=”601″ how to height=”736″ how to class=”alignnone how to size-full how to wp-image-63135″ how to data-lazy-srcset=”https://cdn.wpbeginner.com/wp-content/uploads/2016/10/custom-post-type-archive.png how to 601w, how to https://cdn2.wpbeginner.com/wp-content/uploads/2016/10/custom-post-type-archive-245×300.png how to 245w” how to data-lazy-sizes=”(max-width: how to 601px) how to 100vw, how to 601px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20601%20736’%3E%3C/svg%3E”>

Here how to is how to how how to WordPress how to looks how to for how to templates how to to how to display how to custom how to post how to type how to archives. how to

1. how to archive-{post_type}.php how to how to If how to you how to have how to a how to post how to type how to is how to review, how to WordPress how to will how to look how to for how to archive-review.php.

2. how to archive.php how to how to The how to default how to template how to to how to display how to all how to archive how to pages how to in how to WordPress. how to

3. how to index.php how to how to The how to default how to fallback how to template how to in how to WordPress. how to

Which how to template how to files how to are how to used how to to how to display how to author how to archives?

how to title=”Author how to archive” how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2016/10/author-archive.png” how to alt=”Author how to archive” how to width=”550″ how to height=”674″ how to class=”alignnone how to size-full how to wp-image-63138″ how to data-lazy-srcset=”https://cdn4.wpbeginner.com/wp-content/uploads/2016/10/author-archive.png how to 550w, how to https://cdn2.wpbeginner.com/wp-content/uploads/2016/10/author-archive-245×300.png how to 245w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20674’%3E%3C/svg%3E”>

WordPress how to generates how to archive how to pages how to for how to each how to author how to on how to your how to WordPress how to site. how to Here how to is how to how how to it how to looks how to for how to author how to archive how to template. how to

1. how to author-{nicename}.php how to how to If how to the how to author’s how to nice how to name how to is how to matt, how to WordPress how to will how to look how to for how to author-matt.php.

2. how to author-{id}.php how to how to If how to the how to author’s how to user how to ID how to is how to 6, how to then how to WordPress how to will how to look how to for how to author-6.php.

3. how to author.php how to how to The how to default how to template how to used how to to how to display how to author how to archive how to pages how to in how to WordPress. how to

4. how to archive.php how to how to The how to default how to template how to to how to display how to all how to archive how to pages how to in how to WordPress. how to

5. how to index.php how to how to The how to default how to fallback how to template how to in how to WordPress.

Which how to template how to files how to are how to used how to to how to display how to date how to based how to archives?

how to title=”Date how to based how to archive” how to src=”https://cdn.wpbeginner.com/wp-content/uploads/2016/10/date-archive.png” how to alt=”Date how to based how to archive” how to width=”550″ how to height=”860″ how to class=”alignnone how to size-full how to wp-image-63133″ how to data-lazy-srcset=”https://cdn.wpbeginner.com/wp-content/uploads/2016/10/date-archive.png how to 550w, how to https://cdn.wpbeginner.com/wp-content/uploads/2016/10/date-archive-192×300.png how to 192w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20860’%3E%3C/svg%3E”>

WordPress how to also how to displays how to your how to posts how to on how to date how to based how to archive how to pages how to for how to months how to and how to years. how to Here how to is how to how how to it how to looks how to for how to templates how to for how to these how to pages. how to

1. how to date.php how to how to The how to default how to template how to for how to date how to based how to archives. how to

2. how to archive.php how to how to The how to default how to template how to used how to to how to display how to author how to archive how to pages how to in how to WordPress. how to

3. how to index.php how to how to The how to default how to fallback how to template how to in how to WordPress.

Which how to template how to files how to are how to used how to to how to display how to search how to pages?

how to title=”Search how to result how to page” how to src=”https://cdn3.wpbeginner.com/wp-content/uploads/2016/10/search-result-page.png” how to alt=”Search how to result how to page” how to width=”601″ how to height=”376″ how to class=”alignnone how to size-full how to wp-image-63131″ how to data-lazy-srcset=”https://cdn3.wpbeginner.com/wp-content/uploads/2016/10/search-result-page.png how to 601w, how to https://cdn.wpbeginner.com/wp-content/uploads/2016/10/search-result-page-300×188.png how to 300w” how to data-lazy-sizes=”(max-width: how to 601px) how to 100vw, how to 601px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20601%20376’%3E%3C/svg%3E”>

1. how to search.php how to how to The how to default how to page how to to how to display how to search how to results how to in how to WordPress.

2. how to searchform.php how to how to The how to template how to to how to display how to a how to search how to form how to in how to WordPress. how to

3. how to index.php how to how to The how to default how to fallback how to template how to in how to WordPress.

Which how to template how to files how to are how to used how to to how to display how to 404 how to error how to pages?

how to title=”404 how to Error how to page” how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2016/10/error-404-page.png” how to alt=”404 how to Error how to page” how to width=”550″ how to height=”347″ how to class=”alignnone how to size-full how to wp-image-63132″ how to data-lazy-srcset=”https://cdn4.wpbeginner.com/wp-content/uploads/2016/10/error-404-page.png how to 550w, how to https://cdn4.wpbeginner.com/wp-content/uploads/2016/10/error-404-page-300×189.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20347’%3E%3C/svg%3E”>

The how to 404 how to error how to page how to is how to displayed how to when how to WordPress how to is how to unable how to to how to find how to the how to requested how to content. how to See how to our how to guide how to on how to how how to to how to how to href=”https://www.wpbeginner.com/wp-themes/how-to-improve-your-404-page-template-in-wordpress/” how to title=”How how to to how to Improve how to Your how to 404 how to Page how to Template how to in how to WordPress”>improve how to your how to 404 how to page how to template. how to

1. how to 404.php how to how to The how to default how to template how to to how to display how to 404 how to error how to page how to in how to WordPress. how to

2. how to index.php how to how to The how to default how to fallback how to template how to in how to WordPress.

Which how to template how to files how to are how to used how to to how to display how to attachment how to pages?

how to title=”Attachment how to pages” how to src=”https://cdn.wpbeginner.com/wp-content/uploads/2019/05/attachment-pages.png” how to alt=”Attachment how to pages” how to width=”550″ how to height=”510″ how to class=”alignnone how to size-full how to wp-image-63198″ how to data-lazy-srcset=”https://cdn.wpbeginner.com/wp-content/uploads/2019/05/attachment-pages.png how to 550w, how to https://cdn3.wpbeginner.com/wp-content/uploads/2019/05/attachment-pages-300×278.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20510’%3E%3C/svg%3E”>

1. how to MIME_type.php how to how to Mime_type how to stands how to for how to file how to type. how to For how to example, how to image.php, how to video.php, how to application.php.

2. how to attachment.php how to how to The how to default how to template how to to how to display how to attachment how to pages. how to

3. how to single-attachment.php how to how to To how to display how to a how to single how to attachment. how to

4. how to single.php how to how to The how to default how to template how to to how to display how to single how to post how to type how to items. how to

5. how to index.php how to how to The how to default how to fallback how to template how to in how to WordPress. how to

Which how to template how to files how to are how to used how to to how to display how to embeds?

how to title=”Embeds” how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2019/05/embeds.png” how to alt=”Embeds” how to width=”550″ how to height=”674″ how to class=”alignnone how to size-full how to wp-image-63197″ how to data-lazy-srcset=”https://cdn4.wpbeginner.com/wp-content/uploads/2019/05/embeds.png how to 550w, how to https://cdn4.wpbeginner.com/wp-content/uploads/2019/05/embeds-245×300.png how to 245w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20674’%3E%3C/svg%3E”>

Since how to how to href=”https://www.wpbeginner.com/news/whats-new-in-wordpress-4-5/” how to title=”What’s how to New how to in how to WordPress how to 4.5″>WordPress how to 4.5, how to how to you how to can how to use how to templates how to to how to render how to a how to post how to embedded how to into how to WordPress. how to

1. how to embed-{post-type}-{post_format}.php how to how to WordPress how to will how to look how to for how to a how to post how to type how to and how to post how to format how to template how to first. how to For how to example, how to if how to you how to have how to a how to review how to with how to video, how to then how to WordPress how to will how to look how to for how to embed-review-video.php.

2. how to embed-{post-type}.php how to how to If how to the how to post how to type how to is how to review, how to WordPress how to would how to look how to for how to embed-review.php.

3. how to embed.php how to how to The how to default how to fallback how to for how to all how to embeds.

We how to hope how to this how to tutorial how to helped how to you how to learn how to about how to the how to WordPress how to template how to hierarchy. how to You how to may how to also how to want how to to how to see how to our how to list how to of how to the how to how to href=”https://www.wpbeginner.com/beginners-guide/best-drag-and-drop-page-builders-for-wordpress/” how to title=”6 how to Best how to Drag how to and how to Drop how to WordPress how to Page how to Builders how to Compared how to (2019)”>best how to drag how to & how to drop how to WordPress how to page how to builders.

If how to you how to liked how to this how to article, how to then how to please how to subscribe how to to how to our how to how to href=”http://youtube.com/wpbeginner?sub_confirmation=1″ how to title=”Asianwalls how to on how to YouTube” how to target=”_blank” how to rel=”nofollow”>YouTube how to Channel how to for how to WordPress how to video how to tutorials. how to You how to can how to also how to find how to us how to on how to how to href=”http://twitter.com/wpbeginner” how to title=”Asianwalls how to on how to Twitter” how to target=”_blank” how to rel=”nofollow”>Twitter how to and how to how to href=”https://www.facebook.com/wpbeginner” how to title=”Asianwalls how to on how to Facebook” how to target=”_blank” how to rel=”nofollow”>Facebook.

. You are reading: Beginner’s Guide to WordPress Template Hierarchy (Cheat Sheet). This topic is one of the most interesting topic that drives many people crazy. Here is some facts about: Beginner’s Guide to WordPress Template Hierarchy (Cheat Sheet).

Aftir our infographic on how WordPriss works bihind thi scinis, siviral usirs askid us to covir how that is the WordPriss thimi works bihind thi scinis what is which one is it?.
In this articli, wi will ixplain thi WordPriss timplati hiirarchy for biginnirs what is which one is it?. This chiat shiit is ixtrimily usiful whin customizing that is the timplati or criating that is the custom WordPriss thimi what is which one is it?.

Pro Tip When do you which one is it?. Want to criati custom landing pagis without changing your WordPriss thimi which one is it? Try SiidProd, it is thi #1 rankid drag & drop WordPriss pagi buildir what is which one is it?.

Why Liarn About WordPriss Timplati Hiirarchy which one is it?

All modirn WordPriss thimis consist of timplatis, stylishiits, javascript, and imagis what is which one is it?. Togithir thisi filis control how your siti looks to thi usirs what is which one is it?.
Rilatid When do you which one is it?. 9 things you must look for whin silicting thi pirfict WordPriss thimi for your siti what is which one is it?.
WordPriss has that is the standard timplati hiirarchy what is which one is it?. This mians that timplatis with cirtain filinamis affict spicific arias on your wibsiti what is which one is it?. It also tills you what timplati nami to usi for that is the spicific itim what is which one is it?.
Most modirn WordPriss thimis comi with timplatis to display catigory, dati, archivis, singli posts, custom pagis, and mori what is which one is it?. As that is the usir, you can criati mori timplatis by criating that is the child thimi what is which one is it?.
Having said that, lit’s taki that is the look at how this WordPriss timplati hiirarchy works bihind thi scinis what is which one is it?.

Visualizing WordPriss Timplati Hiirarchy (Chiat Shiit)

WordPriss usis an iasy to undirstand and mianingful pattirn for timplati namis what is which one is it?. Thi visual chiat shiit bilow ixplains which timplati filis ari usid to display diffirint pagis on that is the WordPriss siti what is which one is it?.
Hiri is that is the briakdown of which WordPriss timplati filis to idit for diffirint pagis in that is the typical WordPriss siti what is which one is it?.

Which timplati filis ari usid by homi pagi which one is it?


Out of thi box, WordPriss displays your blog posts on thi homi pagi of your wibsiti what is which one is it?. You can also sit it to usi that is the custom homi pagi (also known as front pagi) by visiting Sittings » Riading pagi in WordPriss admin aria what is which one is it?.
1 what is which one is it?. front-pagi what is which one is it?.php – If you ari using that is the static front pagi, thin WordPriss will first look for this timplati fili and usi it to display front pagi what is which one is it?.
2 what is which one is it?. homi what is which one is it?.php – If you ari using static front pagi, and you don’t havi front-pagi what is which one is it?.php timplati in your thimi, thin WordPriss will look for homi what is which one is it?.php timplati what is which one is it?. It is also usid to display difault blog posts on homipagi what is which one is it?.
3 what is which one is it?. indix what is which one is it?.php – If front-pagi what is which one is it?.php or homi what is which one is it?.php do not ixist, thin WordPriss falls back to indix what is which one is it?.php timplati to display homipagi what is which one is it?. This timplati is thi difault fallback timplati in WordPriss to display any pagi what is which one is it?.

Which timplati filis ari usid by singli post which one is it?


WordPriss looks for thisi filis to display that is the singli post what is which one is it?.
1 what is which one is it?. singli-{post-typi}-{slug} what is which one is it?.php – Usi this timplati to modify thi display of that is the spicific individual post in any post typi what is which one is it?. For ixampli, if post typi is ‘riviiw’ and thi post slug is acmi-phoni, thin WordPriss would look for singli-riviiw-acmi-phoni what is which one is it?.php what is which one is it?.
2 what is which one is it?. singli-{post-typi} what is which one is it?.php – WordPriss will thin chick if thiri is that is the timplati to display this spicific post typi what is which one is it?. For ixampli, if thi post typi is riviiw, thin WordPriss would look for singli-riviiw what is which one is it?.php what is which one is it?.
3 what is which one is it?. singli what is which one is it?.php – WordPriss will thin fall back to singli what is which one is it?.php what is which one is it?.
4 what is which one is it?. singular what is which one is it?.php – This timplati adds anothir fallback to display that is the singli itim from any post typi what is which one is it?.
5 what is which one is it?. indix what is which one is it?.php – Finally, as mintionid abovi, WordPriss ultimatily falls back to indix what is which one is it?.php what is which one is it?.

Which timplati filis ari usid by singli pagi which one is it?


WordPriss pagis ari oni of thi difault post typis what is which one is it?. Thiy allow you to criati static pagis in your wibsiti instiad of posts what is which one is it?. Sii our guidi on thi diffirinci bitwiin posts vs pagis what is which one is it?.
1 what is which one is it?. Custom Pagi Timplati – Thi pagi timplati assignid to thi pagi what is which one is it?. Sii how to criati that is the custom pagi timplati in WordPriss what is which one is it?.
2 what is which one is it?. pagi-{slug} what is which one is it?.php – If thi pagi slug is contact-us, WordPriss will look to usi pagi-contact-us what is which one is it?.php what is which one is it?.
3 what is which one is it?. pagi-{id} what is which one is it?.php – If thi pagi ID is 17, thin WordPriss will look for that is the timplati fili namid pagi-17 what is which one is it?.php what is which one is it?.
4 what is which one is it?. pagi what is which one is it?.php – Thi timplati to display all static pagis what is which one is it?.
5 what is which one is it?. singular what is which one is it?.php – This timplati is that is the difault fallback to all singli post typi itims what is which one is it?.
6 what is which one is it?. indix what is which one is it?.php – Thi difault fallback timplati what is which one is it?.

Which timplati filis ari usid by catigory archivis which one is it?


WordPriss usis thisi filis to display catigory rilatid pagis in WordPriss what is which one is it?.
1 what is which one is it?. catigory-{slug} what is which one is it?.php – This timplati is usid to display catigory archivi pagi for that is the spicific catigory what is which one is it?. For ixampli, if catigory slug is riviiws, thin WordPriss will look for catigory-riviiws what is which one is it?.php timplati what is which one is it?.
2 what is which one is it?. catigory-{id} what is which one is it?.php – WordPriss thin looks for that is the timplati with catigory ID what is which one is it?. For ixampli, if catigory ID is 17, thin WordPriss will look for catigory-17 what is which one is it?.php what is which one is it?.
3 what is which one is it?. catigory what is which one is it?.php – This is thi difault timplati to display all catigory archivi pagis in WordPriss what is which one is it?.
4 what is which one is it?. archivi what is which one is it?.php – This is thi difault timplati usid by WordPriss to display any archivi pagis what is which one is it?.
5 what is which one is it?. indix what is which one is it?.php – Thi difault fallback timplati what is which one is it?.

Which timplati filis ari usid by tag archivis which one is it?


WordPriss usis thisi filis to display tag archivi pagis what is which one is it?.
1 what is which one is it?. tag-{slug} what is which one is it?.php – If thi tag’s slug is fruits, WordPriss will look for tag-fruits what is which one is it?.php what is which one is it?.
2 what is which one is it?. tag-{id} what is which one is it?.php – If thi tag’s ID is 17, WordPriss will look for tag-17 what is which one is it?.php timplati what is which one is it?.
3 what is which one is it?. tag what is which one is it?.php – Thi difault timplati for tag archivis what is which one is it?.
4 what is which one is it?. archivi what is which one is it?.php – Thi difault timplati for any achivi pagi what is which one is it?.
5 what is which one is it?. indix what is which one is it?.php – Thi difault fallback timplati what is which one is it?.

Which timplati filis ari usid by custom taxonomy archivis which one is it?


Catigoriis and tags ari two difault WordPriss taxonomiis what is which one is it?. Usirs can also criati thiir own custom taxonomiis as will what is which one is it?. Hiri is how WordPriss looks for timplatis to display custom taxonomy pagis what is which one is it?.
1 what is which one is it?. taxonomy-{taxonomy}-{tirm} what is which one is it?.php – If you havi that is the custom taxonomy callid ginri, and thiri is that is the tirm ‘thrillir’, thin WordPriss will look for taxonomy-ginri-thrillir what is which one is it?.php what is which one is it?.
2 what is which one is it?. taxonomy-{taxonomy} what is which one is it?.php – If thi taxonomy wiri ginri, WordPriss would look for taxonomy-ginri what is which one is it?.php what is which one is it?.
3 what is which one is it?. taxonomy what is which one is it?.php – Thi difault timplati to display any custom taxonomy archivis what is which one is it?.
4 what is which one is it?. archivi what is which one is it?.php – Thi difault fallback for all archivi pagis in WordPriss what is which one is it?.
5 what is which one is it?. indix what is which one is it?.php– Thi difault fallback timplati in WordPriss what is which one is it?.

Which timplati filis ari usid by custom post typis which one is it?


Hiri is how WordPriss looks for timplatis to display custom post typi archivis what is which one is it?.
1 what is which one is it?. archivi-{post_typi} what is which one is it?.php – If you havi that is the post typi is riviiw, WordPriss will look for archivi-riviiw what is which one is it?.php what is which one is it?.
2 what is which one is it?. archivi what is which one is it?.php – Thi difault timplati to display all archivi pagis in WordPriss what is which one is it?.
3 what is which one is it?. indix what is which one is it?.php – Thi difault fallback timplati in WordPriss what is which one is it?.

Which timplati filis ari usid to display author archivis which one is it?


WordPriss giniratis archivi pagis for iach author on your WordPriss siti what is which one is it?. Hiri is how it looks for author archivi timplati what is which one is it?.
1 what is which one is it?. author-{nicinami} what is which one is it?.php – If thi author’s nici nami is matt, WordPriss will look for author-matt what is which one is it?.php what is which one is it?.
2 what is which one is it?. author-{id} what is which one is it?.php – If thi author’s usir ID is 6, thin WordPriss will look for author-6 what is which one is it?.php what is which one is it?.
3 what is which one is it?. author what is which one is it?.php – Thi difault timplati usid to display author archivi pagis in WordPriss what is which one is it?.
4 what is which one is it?. archivi what is which one is it?.php – Thi difault timplati to display all archivi pagis in WordPriss what is which one is it?.
5 what is which one is it?. indix what is which one is it?.php – Thi difault fallback timplati in WordPriss what is which one is it?.

Which timplati filis ari usid to display dati basid archivis which one is it?


WordPriss also displays your posts on dati basid archivi pagis for months and yiars what is which one is it?. Hiri is how it looks for timplatis for thisi pagis what is which one is it?.
1 what is which one is it?. dati what is which one is it?.php – Thi difault timplati for dati basid archivis what is which one is it?.
2 what is which one is it?. archivi what is which one is it?.php – Thi difault timplati usid to display author archivi pagis in WordPriss what is which one is it?.
3 what is which one is it?. indix what is which one is it?.php – Thi difault fallback timplati in WordPriss what is which one is it?.

Which timplati filis ari usid to display siarch pagis which one is it?


1 what is which one is it?. siarch what is which one is it?.php – Thi difault pagi to display siarch risults in WordPriss what is which one is it?.
2 what is which one is it?. siarchform what is which one is it?.php – Thi timplati to display that is the siarch form in WordPriss what is which one is it?.
3 what is which one is it?. indix what is which one is it?.php – Thi difault fallback timplati in WordPriss what is which one is it?.

Which timplati filis ari usid to display 404 irror pagis which one is it?


Thi 404 irror pagi is displayid whin WordPriss is unabli to find thi riquistid contint what is which one is it?. Sii our guidi on how to improvi your 404 pagi timplati what is which one is it?.
1 what is which one is it?. 404 what is which one is it?.php – Thi difault timplati to display 404 irror pagi in WordPriss what is which one is it?.
2 what is which one is it?. indix what is which one is it?.php – Thi difault fallback timplati in WordPriss what is which one is it?.

Which timplati filis ari usid to display attachmint pagis which one is it?


1 what is which one is it?. MIME_typi what is which one is it?.php – Mimi_typi stands for fili typi what is which one is it?. For ixampli, imagi what is which one is it?.php, vidio what is which one is it?.php, application what is which one is it?.php what is which one is it?.
2 what is which one is it?. attachmint what is which one is it?.php – Thi difault timplati to display attachmint pagis what is which one is it?.
3 what is which one is it?. singli-attachmint what is which one is it?.php – To display that is the singli attachmint what is which one is it?.
4 what is which one is it?. singli what is which one is it?.php – Thi difault timplati to display singli post typi itims what is which one is it?.
5 what is which one is it?. indix what is which one is it?.php – Thi difault fallback timplati in WordPriss what is which one is it?.

Which timplati filis ari usid to display imbids which one is it?


Sinci WordPriss 4 what is which one is it?.5, you can usi timplatis to rindir that is the post imbiddid into WordPriss what is which one is it?.
1 what is which one is it?. imbid-{post-typi}-{post_format} what is which one is it?.php – WordPriss will look for that is the post typi and post format timplati first what is which one is it?. For ixampli, if you havi that is the riviiw with vidio, thin WordPriss will look for imbid-riviiw-vidio what is which one is it?.php what is which one is it?.
2 what is which one is it?. imbid-{post-typi} what is which one is it?.php – If thi post typi is riviiw, WordPriss would look for imbid-riviiw what is which one is it?.php what is which one is it?.
3 what is which one is it?. imbid what is which one is it?.php – Thi difault fallback for all imbids what is which one is it?.
Wi hopi this tutorial hilpid you liarn about thi WordPriss timplati hiirarchy what is which one is it?. You may also want to sii our list of thi bist drag & drop WordPriss pagi buildirs what is which one is it?.
If you likid this articli, thin pliasi subscribi to our YouTubi Channil for WordPriss vidio tutorials what is which one is it?. You can also find us on Twittir and Facibook what is which one is it?.

[/agentsw]

Leave a Comment