Files
sportspress/includes/shortcodes/class-sp-shortcode-staff.php
2018-01-13 08:38:20 +05:30

29 lines
644 B
PHP

<?php
/**
* Staff Shortcode
*
* @author ThemeBoy
* @category Shortcodes
* @package SportsPress/Shortcodes/Staff
* @version 1.4.7
*/
class SP_Shortcode_Staff {
/**
* Output the staff 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( 'staff-header.php', $atts );
sp_get_template( 'staff-photo.php', $atts );
sp_get_template( 'staff-details.php', $atts );
sp_get_template( 'staff-excerpt.php', $atts );
sp_get_template( 'staff-content.php', $atts );
}
}