WC_Admin_List_Table::restrict_manage_posts()publicWC 1.0

See if we should render search filters or not.

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

Хуков нет.

Возвращает

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

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

$WC_Admin_List_Table = new WC_Admin_List_Table();
$WC_Admin_List_Table->restrict_manage_posts();

Код WC_Admin_List_Table::restrict_manage_posts() WC 8.7.0

public function restrict_manage_posts() {
	global $typenow;

	if ( $this->list_table_type === $typenow ) {
		$this->render_filters();
	}
}