WC_Admin_List_Table::restrict_manage_posts()publicWC 1.0

See if we should render search filters or not.

Method of the class: WC_Admin_List_Table{}

No Hooks.

Return

null. Nothing (null).

Usage

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

WC_Admin_List_Table::restrict_manage_posts() code WC 8.7.0

public function restrict_manage_posts() {
	global $typenow;

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