ActionScheduler_Abstract_ListTable::get_request_query_args_to_persist()protectedWC 3.7.3

Querystring arguments to persist between form submissions.

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

Хуков нет.

Возвращает

Строку[].

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

// protected - в коде основоного (родительского) или дочернего класса
$result = $this->get_request_query_args_to_persist();

Список изменений

С версии 3.7.3 Введена.

Код ActionScheduler_Abstract_ListTable::get_request_query_args_to_persist() WC 9.6.0

protected function get_request_query_args_to_persist() {
	return array_merge(
		$this->sort_by,
		array(
			'page',
			'status',
			'tab',
		)
	);
}