Skip to content

Instantly share code, notes, and snippets.

@kadimi
Created June 21, 2018 08:47
Show Gist options
  • Save kadimi/3a2e7920402375cbc31b6d0bf98a377c to your computer and use it in GitHub Desktop.
Save kadimi/3a2e7920402375cbc31b6d0bf98a377c to your computer and use it in GitHub Desktop.
Order SportsPress events by date in ascending order in the dashboard
<?php
/**
* Order SportsPress events by date in ascending order in the dashboard.
*/
add_action( 'admin_init', function() {
if ( empty( $_GET[ 'post_type' ] || 'sp_event' !== $_GET[ 'post_type' ] ) ) {
return;
}
if ( ! empty( $_GET[ 'orderby' ] ) ) {
return;
}
if ( ! empty( $_GET[ 'order' ] ) ) {
return;
}
$_GET[ 'orderby' ] = 'date';
$_GET[ 'order' ] = 'asc';
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment