apply_filters( “theme_{$post_type}_templates”, string[] $post_templates, WP_Theme $theme, WP_Post|null $post, string $post_type )

In this article

Filters list of page templates for a theme.

Description

The dynamic portion of the hook name, $post_type, refers to the post type.

Possible hook names include:

  • theme_post_templates
  • theme_page_templates
  • theme_attachment_templates

Parameters

$post_templatesstring[]
Array of template header names keyed by the template file name.
$themeWP_Theme
The theme object.
$postWP_Post|null
The post being edited, provided for context, or null.
$post_typestring
Post type to get the templates for.

Source

$post_templates = (array) apply_filters( "theme_{$post_type}_templates", $post_templates, $this, $post, $post_type );

Changelog

VersionDescription
4.7.0Added the $post_type parameter.
4.4.0Converted to allow complete control over the $page_templates array.
3.9.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.