2019-11-15 23:26:29 +01:00
|
|
|
<?php
|
2021-04-27 08:32:47 +02:00
|
|
|
/**
|
|
|
|
|
* Config for the WP.com REST API
|
|
|
|
|
*
|
|
|
|
|
* @package automattic/jetpack
|
|
|
|
|
*/
|
2019-11-15 23:26:29 +01:00
|
|
|
|
|
|
|
|
define( 'WPCOM_JSON_API__CURRENT_VERSION', '1.1' );
|
|
|
|
|
global $wpcom_json_api_production_versions, $wpcom_json_api_dev_versions;
|
|
|
|
|
|
|
|
|
|
$wpcom_json_api_production_versions = array(
|
|
|
|
|
'1',
|
|
|
|
|
'1.1',
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
$wpcom_json_api_dev_versions = array(
|
|
|
|
|
'1.2',
|
|
|
|
|
'1.3',
|
2022-12-15 17:41:53 +01:00
|
|
|
'1.4',
|
2019-11-15 23:26:29 +01:00
|
|
|
);
|