ActionScheduler_Abstract_ListTable::display_page()publicWC 1.0

Render the list table page, including header, notices, status filters and table.

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

Хуков нет.

Возвращает

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

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

$ActionScheduler_Abstract_ListTable = new ActionScheduler_Abstract_ListTable();
$ActionScheduler_Abstract_ListTable->display_page();

Код ActionScheduler_Abstract_ListTable::display_page() WC 8.7.0

public function display_page() {
	$this->prepare_items();

	echo '<div class="wrap">';
	$this->display_header();
	$this->display_admin_notices();
	$this->display_filter_by_status();
	$this->display_table();
	echo '</div>';
}