Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Support Us

// Add Shortcode
function supportus( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'type' => '',
		),
		$atts
	);

}
add_shortcode( 'supportus', 'supportus' );