WP_Async_Request::get_query_url() protected WC 1.0
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 5.0.0
protected function get_query_url() {
if ( property_exists( $this, 'query_url' ) ) {
return $this->query_url;
}
return admin_url( 'admin-ajax.php' );
}