Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Image Shortcode

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

	// Attributes
	$atts = shortcode_atts(
		array(
			'width' => '',
			'height' => '',
		),
		$atts,
		'img'
	);

	// Return image HTML code
	return '<img src="' . $content . '" width="' . $atts['width'] . '" height="' . $atts['height'] . '">';

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