Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

One shot shortcode

// Add Shortcode
function oneshot_shortcode( $atts ) {

	// Attributes
	extract( shortcode_atts(
		array(
			'bottle' => '',
			'fruit' => '',
			'link' => '',
		), $atts )
	);

	// Code
return '<a href="' . $link . '"><div class="bottle-container"><div class="lemon"><img src="' . $bottle . '" width="98"></div><div class="bottle"><img src="' . $fruit . '" width="200"></div></div> <!-- end of bottle-container --></a>';
}
add_shortcode( 'oneshot', 'oneshot_shortcode' );