Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

UTAM get report shortcode

// Add Shortcode
function get_report( $atts ) {

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

}
add_shortcode( 'get_report', 'get_report' );