IE Lab People shortcode
// Add Shortcode function ielab_people_shortcode( $atts ) { // Attributes $atts = shortcode_atts( array( 'person_type' => 'Alum', ), $atts, 'ielab_people' ); //code goes here } add_shortcode( 'ielab_people', 'ielab_people_shortcode' );