WP_Async_Request::__construct()publicWC 1.0

Initiate new async request

Метод класса: WP_Async_Request{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$WP_Async_Request = new WP_Async_Request();
$WP_Async_Request->__construct();

Код WP_Async_Request::__construct() WC 8.7.0

public function __construct() {
	$this->identifier = $this->prefix . '_' . $this->action;

	add_action( 'wp_ajax_' . $this->identifier, array( $this, 'maybe_handle' ) );
	add_action( 'wp_ajax_nopriv_' . $this->identifier, array( $this, 'maybe_handle' ) );
}