Jabuticaba
Teste
// Add Shortcode function jabuticaba_shortcode( $atts , $content = null ) { // Attributes extract( shortcode_atts( array( 'titulo' => '', 'imagem' => '', ), $atts ) ); // Code return .'<div class="jabuticaba"><h1>'. $titulo.'</h1>'.$content.'</div>' } add_shortcode( 'jabuticaba', 'jabuticaba_shortcode' );