Skip to content

Instantly share code, notes, and snippets.

@ajgagnon
Created October 5, 2020 18:06
Show Gist options
  • Select an option

  • Save ajgagnon/d6e41f44ea12891de5732eb8a0dc256c to your computer and use it in GitHub Desktop.

Select an option

Save ajgagnon/d6e41f44ea12891de5732eb8a0dc256c to your computer and use it in GitHub Desktop.
Kyles thing
<?php
add_action( 'elementor/query/order_by_newdate', function( $query ) {
$query->set( 'meta_key', 'newdate' );
$query->set( 'orderby', 'meta_value_num' );
$query->set( 'order', 'DESC' );
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment