Add a filter to remove or rename page templates for a theme. This does not yet handle adding page templates. see #13265.

git-svn-id: https://develop.svn.wordpress.org/trunk@27297 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2014-02-26 20:31:00 +00:00
parent de824fade1
commit f17d43e620
1 changed files with 13 additions and 1 deletions

View File

@ -963,7 +963,19 @@ final class WP_Theme implements ArrayAccess {
if ( $this->parent() )
$page_templates += $this->parent()->get_page_templates();
return $page_templates;
/**
* Remove or rename page templates for a theme.
*
* This filter does not currently allow for page templates to be added.
*
* @since 3.9.0
*
* @param array $page_templates Array of page templates. Keys are filenames,
* values are translated names.
* @param WP_Theme $this The theme object.
*/
$return = apply_filters( 'page_templates', $page_templates, $this );
return array_intersect_assoc( $return, $page_templates );
}
/**