Add ability to edit and display player statistics

This commit is contained in:
Brian Miyaji
2014-04-25 15:57:52 +10:00
parent a64b2c3923
commit ccdbc7c978
7 changed files with 461 additions and 35 deletions

View File

@@ -209,17 +209,17 @@ if ( ! function_exists( 'sportspress_output_player_details' ) ) {
sp_get_template( 'player-details.php' );
}
}
if ( ! function_exists( 'sportspress_output_player_performance' ) ) {
if ( ! function_exists( 'sportspress_output_player_statistics' ) ) {
/**
* Output the player performance.
* Output the player statistics.
*
* @access public
* @subpackage Player/Performance
* @subpackage Player/Statistics
* @return void
*/
function sportspress_output_player_performance() {
sp_get_template( 'player-performance.php' );
function sportspress_output_player_statistics() {
sp_get_template( 'player-statistics.php' );
}
}