Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

re460

// Add Shortcode
function re460_show( $atts , $content = null ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'type' => '',
			'id' => '',
		),
		$atts
	);

	//Hallo Velo

}
add_shortcode( 're460', 're460_show' );