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
267           apply_filters_deprecated( 'rest_enabled', array( true ), '4.7.0', 'rest_authentication_errors', __( 'The REST API can no longer be completely disabled, the rest_authentication_errors can be used to restrict access to the API, instead.' ) );
268
269           /**
270            * Filters whether jsonp is enabled.
271            *
272            * @since 4.4.0
273            *
274            * @param bool $jsonp_enabled Whether jsonp is enabled. Default true.
275            */
276           $jsonp_enabled = apply_filters( 'rest_jsonp_enabled', true );
277
278           $jsonp_callback = null;
279
280           if ( isset( $_GET['_jsonp'] ) ) {
281                if ( ! $jsonp_enabled ) {
282                     echo $this->json_error( 'rest_callback_disabled', __( 'JSONP support is disabled on this site.' ), 400 );
283                     return false;
284                }
285