Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

doctor table shortcode

// Add Shortcode
function DoctorTableAtts( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'specialty' => '" "',
			'sort_criteria' => 'name',
		),
		$atts
	);

}
add_shortcode( '', 'DoctorTableAtts' );