Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

lista de eventos

// Add Shortcode
function lista_eventos_shortcode( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
		),
		$atts,
		'lista_eventos'
	);

}
add_shortcode( 'lista_eventos', 'lista_eventos_shortcode' );