Skip to content

Instantly share code, notes, and snippets.

@ebinnion
Created January 21, 2013 00:02
Show Gist options
  • Save ebinnion/4582703 to your computer and use it in GitHub Desktop.
Save ebinnion/4582703 to your computer and use it in GitHub Desktop.
Create WordPress Sidebar Shortcode
function sidebar_shortcode() {
$output = '<div class="viral-sidebar">';
ob_start();
dynamic_sidebar( 'sidebar_shortcode' );
$output .= ob_get_contents();
ob_end_clean();
$output .= '</div>';
return $output;
}
add_shortcode('viral_sidebar', 'sidebar_shortcode');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment