Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: rest_endpoints

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
871            * Filters the array of available REST API endpoints.
872            *
873            * @since 4.4.0
874            *
875            * @param array $endpoints The available endpoints. An array of matching regex patterns, each mapped
876            *                         to an array of callbacks for the endpoint. These take the format
877            *                         `'/path/regex' => array( $callback, $bitmask )` or
878            *                         `'/path/regex' => array( array( $callback, $bitmask ).
879            */
880           $endpoints = apply_filters( 'rest_endpoints', $endpoints );
881
882           // Normalize the endpoints.
883           $defaults = array(
884                'methods'       => '',
885                'accept_json'   => false,
886                'accept_raw'    => false,
887                'show_in_index' => true,
888                'args'          => array(),
889           );