Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: rest_pre_insert_application_password

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
585
586           /**
587            * Filters an application password before it is inserted via the REST API.
588            *
589            * @since 5.6.0
590            *
591            * @param stdClass        $prepared An object representing a single application password prepared for inserting or updating the database.
592            * @param WP_REST_Request $request  Request object.
593            */
594           return apply_filters( 'rest_pre_insert_application_password', $prepared, $request );
595      }
596
597      /**
598       * Prepares the application password for the REST response.
599       *
600       * @since 5.6.0
601       *
602       * @param array           $item    WordPress representation of the item.
603       * @param WP_REST_Request $request Request object.