Add events template to players

This commit is contained in:
Brian Miyaji
2016-12-08 21:12:30 +11:00
parent 5c1e454208
commit c4e73d4977
5 changed files with 97 additions and 5 deletions

View File

@@ -387,6 +387,19 @@ if ( ! function_exists( 'sportspress_output_player_statistics' ) ) {
sp_get_template( 'player-statistics.php' );
}
}
if ( ! function_exists( 'sportspress_output_player_events' ) ) {
/**
* Output the player events.
*
* @access public
* @subpackage Player/Events
* @return void
*/
function sportspress_output_player_events() {
sp_get_template( 'player-events.php' );
}
}
/** Single Player List ********************************************************/