Created
October 5, 2020 18:06
-
-
Save ajgagnon/d6e41f44ea12891de5732eb8a0dc256c to your computer and use it in GitHub Desktop.
Kyles thing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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