Skip to content

Instantly share code, notes, and snippets.

@jubalm
Created April 30, 2012 02:30
Show Gist options
  • Save jubalm/2555005 to your computer and use it in GitHub Desktop.
Save jubalm/2555005 to your computer and use it in GitHub Desktop.
wordpress - register sidebar
<?php
// Register Sidebar
if ( function_exists('register_sidebar') ) {
register_sidebar(array(
'before_widget' => '<div class="widget"',
'after_widget' => '</div>',
'before_title' => '<h4 class="widget-title">',
'after_title' => '</h4>',
'name' =>'General Sidebar'
'id' =>'general-sidebar'
));
}
?>
<div id="general_sidebar" class="sidebar">
<?php dynamic_sidebar( 'General Sidebar' ); ?>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment