Enable linking player lists to teams

This commit is contained in:
Brian Miyaji
2014-06-20 11:42:19 +10:00
parent d49f1c6c13
commit c3d86d3de8
11 changed files with 245 additions and 15 deletions

View File

@@ -186,6 +186,19 @@ if ( ! function_exists( 'sportspress_output_team_columns' ) ) {
sp_get_template( 'team-columns.php' );
}
}
if ( ! function_exists( 'sportspress_output_team_lists' ) ) {
/**
* Output the team lists.
*
* @access public
* @subpackage Team/Lists
* @return void
*/
function sportspress_output_team_lists() {
sp_get_template( 'team-lists.php' );
}
}
/** Single League Table ********************************************************/
@@ -285,3 +298,11 @@ function sportspress_output_venue_map( $query ) {
$meta = get_option( "taxonomy_$t_id" );
sp_get_template( 'venue-map.php', array( 'meta' => $meta ) );
}
/** Misc ********************************************************/
function sportspress_output_br_tag() {
?>
<br>
<?php
}