Skip to content

Instantly share code, notes, and snippets.

@MjHead
Last active March 6, 2018 15:16
Show Gist options
  • Save MjHead/38f649b46576cf44ea48567d074dfa9a to your computer and use it in GitHub Desktop.
Save MjHead/38f649b46576cf44ea48567d074dfa9a to your computer and use it in GitHub Desktop.
Add order by custom field for Smart Listing widget
<?php
add_filter( 'jet-blog/smart-listing/query-args', 'my_listing_query_args' );
function my_listing_query_args( $args ) {
$args['meta_key'] = 'your_key'; // Set meta key to sort by
$args['orderby'] = 'meta_value';
$args['order'] = 'DESC';
$args['meta_type'] = 'DATE';
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment