function custom_default_catalog_orderby() { return 'date'; // Can also ...
[ products limit="4" columns="4" orderby="id" order="DESC" visibility="visible"].
function misha_default_catalog_orderby( $sort_by ) { return ' date'; }
Try instead the following complete code that works for orderby "Date" in "DESC" Order for a specific defined product category archive page only ...
You want to order by date with DESC order ? Maybe you've a plugin or the theme interfering with the query? What happens if you use 'suppress_filters' => true ?
Here is a quick snippet that will be handy for many of you! This snippet allows you to create a new default sorting method to list your products ...
like ? orderby=score-desc but for default it's not sorting the products regarding their ...
Search forums. Support » Plugin: WooCommerce » Related products order by date ...
You can pass an array to the query as the following example described in the Codex shows: $args = array( 'orderby' => array( 'title' => 'DESC', ...
I am displaying past events using a shortcode and want them displayed with the most recent events first, but when I use order=”DESC” it doesn't change the order ...