jetpack
Last commit date
3rd-party
1 week ago
_inc
1 week ago
css
2 weeks ago
extensions
1 week ago
images
1 month ago
jetpack_vendor
1 week ago
json-endpoints
1 week ago
modules
1 week ago
sal
1 week ago
src
1 week ago
vendor
1 week ago
views
1 month ago
CHANGELOG.md
1 week ago
LICENSE.txt
5 months ago
SECURITY.md
2 years ago
class-jetpack-connection-status.php
2 years ago
class-jetpack-gallery-settings.php
6 months ago
class-jetpack-newsletter-dashboard-widget.php
6 months ago
class-jetpack-pre-connection-jitms.php
2 years ago
class-jetpack-stats-dashboard-widget.php
3 months ago
class-jetpack-xmlrpc-methods.php
1 week ago
class.frame-nonce-preview.php
6 months ago
class.jetpack-admin.php
1 month ago
class.jetpack-autoupdate.php
6 months ago
class.jetpack-cli.php
1 week ago
class.jetpack-client-server.php
2 years ago
class.jetpack-gutenberg.php
1 week ago
class.jetpack-heartbeat.php
3 months ago
class.jetpack-modules-list-table.php
6 months ago
class.jetpack-network-sites-list-table.php
6 months ago
class.jetpack-network.php
1 month ago
class.jetpack-plan.php
2 years ago
class.jetpack-post-images.php
2 months ago
class.jetpack-twitter-cards.php
3 months ago
class.jetpack-user-agent.php
2 years ago
class.jetpack.php
1 week ago
class.json-api-endpoints.php
1 week ago
class.json-api.php
2 weeks ago
class.photon.php
3 years ago
composer.json
1 week ago
enhanced-open-graph.php
1 week ago
functions.compat.php
3 months ago
functions.cookies.php
2 years ago
functions.global.php
1 month ago
functions.is-mobile.php
2 years ago
functions.opengraph.php
2 months ago
functions.photon.php
2 years ago
jetpack.php
1 week ago
json-api-config.php
3 years ago
json-endpoints.php
2 years ago
load-jetpack.php
1 week ago
locales.php
6 months ago
readme.txt
1 week ago
unauth-file-upload.php
6 months ago
uninstall.php
6 months ago
wpml-config.xml
3 years ago
json-api-config.php
21 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Config for the WP.com REST API |
| 4 | * |
| 5 | * @package automattic/jetpack |
| 6 | */ |
| 7 | |
| 8 | define( 'WPCOM_JSON_API__CURRENT_VERSION', '1.1' ); |
| 9 | global $wpcom_json_api_production_versions, $wpcom_json_api_dev_versions; |
| 10 | |
| 11 | $wpcom_json_api_production_versions = array( |
| 12 | '1', |
| 13 | '1.1', |
| 14 | ); |
| 15 | |
| 16 | $wpcom_json_api_dev_versions = array( |
| 17 | '1.2', |
| 18 | '1.3', |
| 19 | '1.4', |
| 20 | ); |
| 21 |