wc_products_array_orderby_price() WC 3.0.0
Sort by price low to high.
No Hooks.
Return
Int.
Usage
wc_products_array_orderby_price( $a, $b );
- $a(WC_Product) (required)
- First WC_Product object.
- $b(WC_Product) (required)
- Second WC_Product object.
Changelog
Since 3.0.0 | Introduced. |
Code of wc_products_array_orderby_price() wc products array orderby price WC 5.0.0
function wc_products_array_orderby_price( $a, $b ) {
if ( $a->get_price() === $b->get_price() ) {
return 0;
}
return ( $a->get_price() < $b->get_price() ) ? -1 : 1;
}