Add single staff shortcode and widget

This commit is contained in:
Brian Miyaji
2014-11-11 09:44:56 +11:00
parent 70446f91ca
commit 04c9d1dade
6 changed files with 133 additions and 3 deletions

View File

@@ -0,0 +1,25 @@
<?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-photo.php', $atts );
sp_get_template( 'staff-details.php', $atts );
}
}