Update the descriptions for get_front_page_template() and get_comments_popup_template() to reference the correct dynamic hook names.

Part props @birgire.

Fixes #32989. See #32246.


git-svn-id: https://develop.svn.wordpress.org/trunk@33272 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Drew Jaynes 2015-07-14 21:58:16 +00:00
parent 3d1f8f292a
commit 7b91a81c4a

View File

@ -27,6 +27,7 @@ function get_query_template( $type, $templates = array() ) {
$templates = array("{$type}.php"); $templates = array("{$type}.php");
$template = locate_template( $templates ); $template = locate_template( $templates );
/** /**
* Filter the path of the queried template by type. * Filter the path of the queried template by type.
* *
@ -276,7 +277,7 @@ function get_home_template() {
* Retrieve path of front-page template in current or parent template. * Retrieve path of front-page template in current or parent template.
* *
* Looks for 'front-page.php'. The template path is filterable via the * Looks for 'front-page.php'. The template path is filterable via the
* 'front_page_template' hook. * dynamic {@see '$type_template'} hook, e.g. 'frontpage_template'.
* *
* @since 3.0.0 * @since 3.0.0
* *
@ -447,7 +448,8 @@ function get_attachment_template() {
* Checks for comment popup template in current template, if it exists or in the * Checks for comment popup template in current template, if it exists or in the
* parent template. * parent template.
* *
* The template path is filterable via the 'comments_popup_template' hook. * The template path is filterable via the dynamic {@see '$type_template'} hook,
* e.g. 'commentspopup_template'.
* *
* @since 1.5.0 * @since 1.5.0
* *
@ -458,7 +460,7 @@ function get_attachment_template() {
function get_comments_popup_template() { function get_comments_popup_template() {
$template = get_query_template( 'comments_popup', array( 'comments-popup.php' ) ); $template = get_query_template( 'comments_popup', array( 'comments-popup.php' ) );
// Backward compat code will be removed in a future release // Backward compat code will be removed in a future release.
if ('' == $template) if ('' == $template)
$template = ABSPATH . WPINC . '/theme-compat/comments-popup.php'; $template = ABSPATH . WPINC . '/theme-compat/comments-popup.php';