Skip to content

Instantly share code, notes, and snippets.

@jpen365
Last active July 9, 2019 17:49
Show Gist options
  • Save jpen365/47d40cfcf8db2103d01bddb3bcd5fd73 to your computer and use it in GitHub Desktop.
Save jpen365/47d40cfcf8db2103d01bddb3bcd5fd73 to your computer and use it in GitHub Desktop.
Function that registers my theme's sidebar area
<?php
/* register widget areas */
function jpen_sidebar_widget_area() {
register_sidebar( array(
'name' => 'Sidebar Widget Area',
'id' => 'jpen-sidebar-widgets',
'before_widget' => '<div class="well">',
'after_widget' => '</div>',
'before_title' => '<h4>',
'after_title' => '</h4>',
));
}
add_action( 'widgets_init' , 'jpen_sidebar_widget_area' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment