Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

lammily image rollover

// Add Shortcode
function lammily_image_roller( $atts ) {

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

	// Code
//do this
}
add_shortcode( 'lir', 'lammily_image_roller' );