25 lines
507 B
PHP
25 lines
507 B
PHP
<?php
|
|
/**
|
|
* Player Performance
|
|
*
|
|
* @author ThemeBoy
|
|
* @package SportsPress/Templates
|
|
* @version 0.8
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
|
|
|
if ( ! isset( $id ) )
|
|
$id = get_the_ID();
|
|
|
|
$leagues = get_the_terms( $id, 'sp_league' );
|
|
|
|
// Loop through performance for each league
|
|
if ( is_array( $leagues ) ):
|
|
foreach ( $leagues as $league ):
|
|
sp_get_template( 'player-performance-table.php', array(
|
|
'league' => $league
|
|
) );
|
|
endforeach;
|
|
endif;
|