Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Staff Dir. Shortcode

// Add Shortcode
function rd_staff_dir_sc( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'imgcircle' => 'no',
			'hideposition' => 'no',
			'showlink' => 'no',
		),
		$atts,
		'rd-staff-dir'
	);

	<!-- this is the code to generate the output -->

}
add_shortcode( 'rd-staff-dir', 'rd_staff_dir_sc' );