SpagoBI
Shortcode inserts spagoBI document
// Add Shortcode
function spagobi_shortcode( $atts ) {
// Attributes
extract( shortcode_atts(
array(
'documentLabel' => '',
'heigth' => '500px',
), $atts )
);
// Code
<iframe src="lkjlkj" />
}
add_shortcode( 'spagobi', 'spagobi_shortcode' );