Refactor officials as custom post type

This commit is contained in:
Brian Miyaji
2017-11-01 16:44:28 +11:00
parent 80cdb3c228
commit 70dd825ba7
14 changed files with 1020 additions and 120 deletions

View File

@@ -202,6 +202,19 @@ if ( ! function_exists( 'sportspress_output_event_performance' ) ) {
sp_get_template( 'event-performance.php' );
}
}
if ( ! function_exists( 'sportspress_output_event_officials' ) ) {
/**
* Output the event officials.
*
* @access public
* @subpackage Event/Officials
* @return void
*/
function sportspress_output_event_officials() {
sp_get_template( 'event-officials.php' );
}
}
/** Single Calendar ********************************************************/