WC_Admin_List_Table::restrict_manage_posts
See if we should render search filters or not.
Method of the class: WC_Admin_List_Table{}
No Hooks.
Returns
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() WC Admin List Table::restrict manage posts code WC 10.3.5
public function restrict_manage_posts() {
global $typenow;
if ( $this->list_table_type === $typenow ) {
$this->render_filters();
}
}