Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

corlate

corlate sample

// Add Shortcode
function corlate_shortcode( $atts , $content = null ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'title' => '',
			'subtitle' => '',
			'image-src' => '',
		),
		$atts
	);

	return 'hi';

}
add_shortcode( 'corlate', 'corlate_shortcode' );