diff --git a/src/wp-includes/post-template.php b/src/wp-includes/post-template.php
index a2a737df48..c4750b927a 100644
a
|
b
|
function get_the_password_form( $post = 0 ) { |
1730 | 1730 | * Determines whether currently in a page template. |
1731 | 1731 | * |
1732 | 1732 | * This template tag allows you to determine if you are in a page template. |
1733 | | * You can optionally provide a template name or array of template names |
| 1733 | * You can optionally provide a template filename or array of template names |
1734 | 1734 | * and then the check will be specific to that template. |
1735 | 1735 | * |
1736 | 1736 | * For more information on this and similar theme functions, check out |
… |
… |
function get_the_password_form( $post = 0 ) { |
1741 | 1741 | * @since 4.2.0 The `$template` parameter was changed to also accept an array of page templates. |
1742 | 1742 | * @since 4.7.0 Now works with any post type, not just pages. |
1743 | 1743 | * |
1744 | | * @param string|array $template The specific template name or array of templates to match. |
| 1744 | * @param string|array $template The specific template filename or array of templates to match. |
1745 | 1745 | * @return bool True on success, false on failure. |
1746 | 1746 | */ |
1747 | 1747 | function is_page_template( $template = '' ) { |