Add events template to players
This commit is contained in:
19
templates/player-events.php
Normal file
19
templates/player-events.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?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 ) );
|
||||
Reference in New Issue
Block a user