説明なし

json-api-config.php 330B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Config for the WP.com REST API
  4. *
  5. * @package automattic/jetpack
  6. */
  7. define( 'WPCOM_JSON_API__CURRENT_VERSION', '1.1' );
  8. global $wpcom_json_api_production_versions, $wpcom_json_api_dev_versions;
  9. $wpcom_json_api_production_versions = array(
  10. '1',
  11. '1.1',
  12. );
  13. $wpcom_json_api_dev_versions = array(
  14. '1.2',
  15. '1.3',
  16. );