Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Wedding Vendors Shortcode

// Add Shortcode
function tab_wedding_vendors( $atts ) {

	// Attributes
	extract( shortcode_atts(
		array(
		), $atts )
	);
}
add_shortcode( 'Wedding Vendors', 'tab_wedding_vendors' );