Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

B3W Gallery Shortcode

// Add Shortcode
function custom_shortcode( $atts ) {

	// Attributes
	extract( shortcode_atts(
		array(
			'album' => '',
		), $atts )
	);
}
add_shortcode( 'b3w_gallery', 'custom_shortcode' );