WC_Admin_List_Table_Products::sku_search
Deprecated since 4.4.0 Logic moved to query_filters.. It is no longer supported and may be removed in future releases. It is recommended to replace this function with the same one.
Search by SKU or ID for products.
Method of the class: WC_Admin_List_Table_Products{}
No Hooks.
Returns
String.
Usage
$WC_Admin_List_Table_Products = new WC_Admin_List_Table_Products(); $WC_Admin_List_Table_Products->sku_search( $where );
- $where(string) (required)
- Where clause SQL.
Changelog
| Deprecated since 4.4.0 | Logic moved to query_filters. |
WC_Admin_List_Table_Products::sku_search() WC Admin List Table Products::sku search code WC 10.4.3
public function sku_search( $where ) {
wc_deprecated_function( 'WC_Admin_List_Table_Products::sku_search', '4.4.0', 'Logic moved to query_filters.' );
return $where;
}