Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Generation Image

// Add Shortcode
function image( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'src' => '',
			'class' => '',
			'alt' => '',
		),
		$atts
	);

}
add_shortcode( 'img', 'image' );