WC_Admin_List_Table_Products::sku_search()publicWC 1.0

Deprecated from version 4.4.0 Logic moved to query_filters.. It is no longer supported and can 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.

Return

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() code WC 8.7.0

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;
}