Skip to content

Instantly share code, notes, and snippets.

@Jany-M
Created April 8, 2016 15:04
Show Gist options
  • Save Jany-M/0f29b6d948a85bb00660f7cddb08e444 to your computer and use it in GitHub Desktop.
Save Jany-M/0f29b6d948a85bb00660f7cddb08e444 to your computer and use it in GitHub Desktop.
[WordPress] Order Page and Hierarchical Custom Post Types list by date
<?php
// Change all pages and hierarchical custom post types to date order
function custom_page_order( $wp_query ) {
global $pagenow;
if (is_admin() && 'edit.php' == $pagenow && !isset($_GET['orderby'])) {
$wp_query->set( 'orderby', 'date' );
$wp_query->set( 'order', 'DSC' );
}
}
add_filter('pre_get_posts', 'custom_page_order' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment