You appear to be a bot. Output may be restricted
Description
Check if Jetpack's REST API compat file should be included
Usage
$null = Jetpack::check_rest_api_compat();
Parameters
Returns
null
Source
File name: jetpack/class.jetpack.php
Lines:
1 to 14 of 14
public function check_rest_api_compat() { /** * Filters the list of REST API compat files to be included. * * @since 2.2.5 * * @param array $args Array of REST API compat files to include. */ $_jetpack_rest_api_compat_includes = apply_filters( 'jetpack_rest_api_compat', array() ); foreach ( $_jetpack_rest_api_compat_includes as $_jetpack_rest_api_compat_include ) { require_once $_jetpack_rest_api_compat_include; } }