WP_Async_Request::get_query_args() protected WC 1.0
Get query args
{} Это метод класса: WP_Async_Request{}
Хуков нет.
Возвращает
Массив.
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->get_query_args();
Код WP_Async_Request::get_query_args() WP Async Request::get query args WC 5.0.0
protected function get_query_args() {
if ( property_exists( $this, 'query_args' ) ) {
return $this->query_args;
}
return array(
'action' => $this->identifier,
'nonce' => wp_create_nonce( $this->identifier ),
);
}