You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
383 B
14 lines
383 B
<?php
|
|
|
|
// Exit if accessed directly.
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
|
|
acf_include( 'includes/rest-api/acf-rest-api-functions.php' );
|
|
acf_include( 'includes/rest-api/class-acf-rest-api.php' );
|
|
acf_include( 'includes/rest-api/class-acf-rest-embed-links.php' );
|
|
acf_include( 'includes/rest-api/class-acf-rest-request.php' );
|
|
|
|
// Initialize.
|
|
acf_new_instance( 'ACF_Rest_Api' );
|
|
|