WP_Async_Request::get_query_url()
Get query URL
Метод класса: WP_Async_Request{}
Хуков нет.
Возвращает
Строку
.
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->get_query_url();
Код WP_Async_Request::get_query_url() WP Async Request::get query url WC 9.7.1
protected function get_query_url() { if ( property_exists( $this, 'query_url' ) ) { return $this->query_url; } return admin_url( 'admin-ajax.php' ); }