Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: username_exists

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
1917      /**
1918       * Filters whether the given username exists.
1919       *
1920       * @since 4.9.0
1921       *
1922       * @param int|false $user_id  The user ID associated with the username,
1923       *                            or false if the username does not exist.
1924       * @param string    $username The username to check for existence.
1925       */
1926      return apply_filters( 'username_exists', $user_id, $username );
1927 }
1928
1929 /**
1930  * Determines whether the given email exists.
1931  *
1932  * For more information on this and similar theme functions, check out
1933  * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
1934  * Conditional Tags} article in the Theme Developer Handbook.
1935  *