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
320           );
321
322           /**
323            * Filters whether jsonp is enabled.
324            *
325            * @since 4.4.0
326            *
327            * @param bool $jsonp_enabled Whether jsonp is enabled. Default true.
328            */
329           $jsonp_enabled = apply_filters( 'rest_jsonp_enabled', true );
330
331           $jsonp_callback = null;
332
333           if ( isset( $_GET['_jsonp'] ) ) {
334                if ( ! $jsonp_enabled ) {
335                     echo $this->json_error( 'rest_callback_disabled', __( 'JSONP support is disabled on this site.' ), 400 );
336                     return false;
337                }
338