Skip to content

Instantly share code, notes, and snippets.

@robertuniqid
Created September 11, 2018 18:32
Show Gist options
  • Save robertuniqid/c144e003905d3e3f26277110646963a7 to your computer and use it in GitHub Desktop.
Save robertuniqid/c144e003905d3e3f26277110646963a7 to your computer and use it in GitHub Desktop.
WPEP Order Index Page by Publish Date
<?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