Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_is_application_passwords_available_for_user

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
4352
4353      /**
4354       * Filters whether Application Passwords is available for a specific user.
4355       *
4356       * @since 5.6.0
4357       *
4358       * @param bool    $available True if available, false otherwise.
4359       * @param WP_User $user      The user to check.
4360       */
4361      return apply_filters( 'wp_is_application_passwords_available_for_user', true, $user );
4362 }
4363