Automattic\WooCommerce\RestApi
Server::init()
Hook into WordPress ready to init the REST API as needed.
Метод класса: Server{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$Server = new Server(); $Server->init();
Код Server::init() Server::init WC 8.1.1
public function init() { add_action( 'rest_api_init', array( $this, 'register_rest_routes' ), 10 ); \WC_REST_System_Status_V2_Controller::register_cache_clean(); }