Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save kadimi/0c02da1974d88baeb14766e031e4ab69 to your computer and use it in GitHub Desktop.
Save kadimi/0c02da1974d88baeb14766e031e4ab69 to your computer and use it in GitHub Desktop.
SportsPress: on player profiles, show current season and league events only
<?php
add_filter( 'sp_player_events_list_args', function( $args ) {
$args[ 'league' ] = get_option( 'sportspress_league', false );
$args[ 'season' ] = get_option( 'sportspress_season', false );
return $args;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment