Skip to content

Instantly share code, notes, and snippets.

@kadimi
Created December 20, 2021 12:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kadimi/8ed2a3e19ec1e2b700f54aae76a0b86a to your computer and use it in GitHub Desktop.
Save kadimi/8ed2a3e19ec1e2b700f54aae76a0b86a to your computer and use it in GitHub Desktop.
SportsPress Team Event Sorting Direction
<?php
add_filter( 'sp_team_events_list_args', function( $args ) {
$args[ 'order' ] = 'ASC';
return $args;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment