This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function orion_static_block_shortcode_func( $atts, $content = '' ) { | |
if (!isset($atts['block']) || $atts['block'] == "") { | |
return; | |
} else { | |
$block_id = $atts['block']; | |
return siteorigin_panels_render($block_id); | |
} | |
} | |
add_shortcode( 'staticblock', 'orion_static_block_shortcode_func' ); |