Add ability to display staff members in team page

This commit is contained in:
Brian Miyaji
2015-12-29 15:49:01 +11:00
parent 16b8e17c11
commit 331634a65f
6 changed files with 204 additions and 0 deletions

View File

@@ -259,6 +259,19 @@ if ( ! function_exists( 'sportspress_output_team_details' ) ) {
sp_get_template( 'team-details.php' );
}
}
if ( ! function_exists( 'sportspress_output_team_staff' ) ) {
/**
* Output the team staff.
*
* @access public
* @subpackage Team/Staff
* @return void
*/
function sportspress_output_team_staff() {
sp_get_template( 'team-staff.php' );
}
}
if ( ! function_exists( 'sportspress_output_team_tables' ) ) {
/**