Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: the_password_form

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
1616       *
1617       * If modifying the password field, please note that the core database schema
1618       * limits the password field to 20 characters regardless of the value of the
1619       * size attribute in the form input.
1620       *
1621       * @since 2.7.0
1622       *
1623       * @param string $output The password form HTML output.
1624       */
1625      return apply_filters( 'the_password_form', $output );
1626 }
1627
1628 /**
1629  * Whether currently in a page template.
1630  *
1631  * This template tag allows you to determine if you are in a page template.
1632  * You can optionally provide a template name or array of template names
1633  * and then the check will be specific to that template.
1634  *