Created
September 11, 2018 18:32
-
-
Save robertuniqid/c144e003905d3e3f26277110646963a7 to your computer and use it in GitHub Desktop.
WPEP Order Index Page by Publish Date
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 | |
// Please ensure that WPEP -> Settings -> Index Page -> Grid Options -> Enforce Ordering Option is Disabled. | |
add_filter( 'wpep_primary_content_list_args', function($args) { | |
$args = [ | |
'order' => 'DESC', | |
'orderby' => 'date', | |
]; | |
return $args; | |
}, 50000 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment