Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

iodirectory

// Add Shortcode
function ad_csv_import( $atts ) {

	// Attributes
	extract( shortcode_atts(
		array(
			'sortcol1' => '',
			'sortcol2' => '',
			'sortcol3' => '',
		), $atts )
	);
}
add_shortcode( 'iodirectory', 'ad_csv_import' );