

is_page_template() returns true or false depending on whether a custom page template was used to render the page.wp_get_theme()->get_page_templates() returns all custom page templates available to the currently active theme ( get_page_templates() is a method of the WP_Theme class).get_page_template() returns the path of the page template used to render the page.These built-in WordPress functions and methods can help you work with page templates: Notice the page-template-my-custom-page-php class that is applied to the body tag. For example, if your custom page template file is named as follows: When using a custom page template, the class page-template will print, along with a class naming the specific template. page-.php) also gets the page-template-default class rather than its own body class.Page Template - If the page has a custom template assigned, WordPress looks for that file and, if found, uses it.As we learned earlier in the Template Hierarchy, WordPress looks for template files in the following order:

When a person browses to your website, WordPress selects which template to use for rendering that page. Top ↑ Page Templates within the Template Hierarchy This section shows you how to build page templates that can be selected by your users through their admin screens.įor example, you can build page templates for:

You can use page templates to achieve these things. Or, you may want to display a featured image that links to a post on one part of the page, have a list of latest posts elsewhere, and use a custom navigation. You may decide that you want your homepage to look a specific way, that is quite different to other parts of your site. Page templates display your site’s dynamic content on a page, e.g., posts, news updates, calendar events, media files, etc.
