Created
April 30, 2024 14:16
-
-
Save kadimi/0c02da1974d88baeb14766e031e4ab69 to your computer and use it in GitHub Desktop.
SportsPress: on player profiles, show current season and league events only
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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