Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

shortCode_Hello_World

Saludo

// Add Shortcode
function hello_World( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'msg' => 'Hello World! c41n',
		),
		$atts,
		'c41n_helloworld'
	);

	
	

}
add_shortcode( 'c41n_helloworld', 'hello_World' );