Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

gerar s p o i l e r

// Add Shortcode
function ( $atts ) {

	// Attributes
	extract( shortcode_atts(
		array(
			'carta_nome' => '',
			'carta_colecao' => '',
		), $atts )
	);

	// Code
return '<div class="carta">
<h2>'.$nome.'</h2>
<h3>'.$nome_colecao.'</h3>
</div>';
}
add_shortcode( 'spoiler', '' );