Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

example

asdads

// Add Shortcode
function custom_shortcode( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'table' => 'AAAA',
			'reportID' => 'report id',
			'userID' => 'user id',
		),
		$atts
	);

}
add_shortcode( 'BiomecaQuery', 'custom_shortcode' );