Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: rest_jsonp_enabled

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
356           );
357
358           /**
359            * Filters whether JSONP is enabled for the REST API.
360            *
361            * @since 4.4.0
362            *
363            * @param bool $jsonp_enabled Whether JSONP is enabled. Default true.
364            */
365           $jsonp_enabled = apply_filters( 'rest_jsonp_enabled', true );
366
367           $jsonp_callback = null;
368
369           if ( isset( $_GET['_jsonp'] ) ) {
370                if ( ! $jsonp_enabled ) {
371                     echo $this->json_error( 'rest_callback_disabled', __( 'JSONP support is disabled on this site.' ), 400 );
372                     return false;
373                }
374