Woocomerce – Order products by float attribute in archive pages
OK… First of all, `$query->set( ‘orderby’, ‘pa_od’ );’ will most probably do nothing. You can’t order by some string and think that WordPress will guess what that is. Here is the list of possible orderby values: https://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters If you want to order by custom field, then you have to do it this way: $query->set( ‘meta_key’, … Read more