Files
sportspress/includes/shortcodes/class-sp-shortcode-player-statistics.php
2014-07-12 02:31:42 +10:00

25 lines
498 B
PHP

<?php
/**
* Player Statistics Shortcode
*
* @author ThemeBoy
* @category Shortcodes
* @package SportsPress/Shortcodes/Player_Statistics
* @version 1.2
*/
class SP_Shortcode_Player_Statistics {
/**
* Output the player statistics shortcode.
*
* @param array $atts
*/
public static function output( $atts ) {
if ( ! isset( $atts['id'] ) && isset( $atts[0] ) && is_numeric( $atts[0] ) )
$atts['id'] = $atts[0];
sp_get_template( 'player-statistics.php', $atts );
}
}