Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Image Size

Resize image content to width by height:
[imagesize] contente [/imagesize]

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

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

	// Code
return '<img src="' . $content . '" width="' . $width . '" height="' . $height . '">';

}
add_shortcode( 'imagesize', 'imagesize_shortcode' );