File "class-sp-shortcode-event-teams.php"

Full Path: /home/londdqdw/public_html/06/wp-content/plugins/sportspress/includes/shortcodes/class-sp-shortcode-event-teams.php
File size: 488 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
/**
 * Event Teams Shortcode
 *
 * @author      ThemeBoy
 * @category    Shortcodes
 * @package     SportsPress/Shortcodes/Event_Officials
 * @version     2.6.9
 */
class SP_Shortcode_Event_Teams {

	/**
	 * Output the event teams 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( 'event-logos.php', $atts );
	}
}