Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Add Image

Input:
1. Img src 2. img width 3. imh height

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

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

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

}
add_shortcode( 'sbphoto', 'sbphoto_shortcode' );