Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

clan-daten

// Add Shortcode
function clan_shortcode( $atts ) {

	// Attributes
	extract( shortcode_atts(
		array(
			'name' => 'Ruhrpott Germany',
			'kurz' => '[RPGER]',
			'leiter' => 'DJD2K14',
		), $atts )
	);
}
add_shortcode( 'clan', 'clan_shortcode' );