Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Modulos Shortcode

// Add Shortcode
function modulo_shortcode( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'post-id' => '',
		),
		$atts,
		''
	);

	return .$atts[post-id];

}
add_shortcode( 'modulo', 'modulo_shortcode' );