Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Gallery Shortcode

// Add Shortcode
function gallery_shortcode( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'images' => '',
		),
		$atts,
		'gallery'
	);

}
add_shortcode( 'gallery', 'gallery_shortcode' );