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' );