Skip to content

Instantly share code, notes, and snippets.

View AlexGStapleton's full-sized avatar
🔥

Alex S AlexGStapleton

🔥
View GitHub Profile
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' );