20 lines
473 B
PHP
20 lines
473 B
PHP
<?php
|
|
/**
|
|
* Player Events
|
|
*
|
|
* @author ThemeBoy
|
|
* @package SportsPress/Templates
|
|
* @version 2.1.7
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
|
|
|
if ( ! isset( $id ) )
|
|
$id = get_the_ID();
|
|
|
|
$format = get_option( 'sportspress_player_events_format', 'blocks' );
|
|
if ( 'calendar' === $format )
|
|
sp_get_template( 'event-calendar.php', array( 'player' => $id ) );
|
|
else
|
|
sp_get_template( 'event-fixtures-results.php', array( 'player' => $id ) );
|