ActionScheduler_Abstract_ListTable::display_page()
Render the list table page, including header, notices, status filters and table.
Метод класса: ActionScheduler_Abstract_ListTable{}
Хуков нет.
Возвращает
null
. Ничего.
Использование
$ActionScheduler_Abstract_ListTable = new ActionScheduler_Abstract_ListTable(); $ActionScheduler_Abstract_ListTable->display_page();
Код ActionScheduler_Abstract_ListTable::display_page() ActionScheduler Abstract ListTable::display page WC 7.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>'; }