Skip to content

Instantly share code, notes, and snippets.

@jdspiral
Last active August 29, 2015 14:16
Show Gist options
  • Save jdspiral/629ea54ca8617e70b688 to your computer and use it in GitHub Desktop.
Save jdspiral/629ea54ca8617e70b688 to your computer and use it in GitHub Desktop.
Register Custom Sidebar
// Register Custom Sidebar
function jds_blog_sidebar() {
/* Register the primary sidebar. */
register_sidebar(
array(
'id' => 'blog',
'name' => __( 'Blog Sidebar', 'textdomain' ),
'description' => __( 'This your sidebar description.', 'textdomain' ),
'before_widget' => '<section id="%1$s" class="widget %2$s blog-sidebar">',
'after_widget' => '</section>',
'before_title' => '<h4 class="widget-title">',
'after_title' => '</h4>'
)
);
}
add_action( 'widgets_init', 'jds_blog_sidebar' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment