WC_Admin_List_Table::request_query()
Handle any filters.
Method of the class: WC_Admin_List_Table{}
No Hooks.
Return
Array
.
Usage
$WC_Admin_List_Table = new WC_Admin_List_Table(); $WC_Admin_List_Table->request_query( $query_vars );
- $query_vars(array) (required)
- Query vars.
WC_Admin_List_Table::request_query() WC Admin List Table::request query code WC 9.8.2
public function request_query( $query_vars ) { global $typenow; if ( $this->list_table_type === $typenow ) { return $this->query_filters( $query_vars ); } return $query_vars; }