Use numeric, not decimal

Closes #14815
This commit is contained in:
Mike Jolley 2017-05-08 12:34:00 +01:00
parent d81dc541c2
commit 885e332f5a
1 changed files with 1 additions and 1 deletions

View File

@ -782,7 +782,7 @@ function wc_get_min_max_price_meta_query( $args ) {
'key' => '_price',
'value' => array( $min, $max ),
'compare' => 'BETWEEN',
'type' => 'DECIMAL',
'type' => 'NUMERIC',
);
}