Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

filter

// Add Shortcode
function custom_shortcode( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
		),
		$atts,
		'SIZE'
	);

}
add_shortcode( 'FILTER', 'custom_shortcode' );