Skip to content

Instantly share code, notes, and snippets.

@domantasg
Created August 8, 2017 12:53
Show Gist options
  • Select an option

  • Save domantasg/9633aa64b1f16b7a5a976f0755f51eef to your computer and use it in GitHub Desktop.

Select an option

Save domantasg/9633aa64b1f16b7a5a976f0755f51eef to your computer and use it in GitHub Desktop.
// Register a new sidebar simply named 'sidebar'
function add_widget_Support() {
register_sidebar( array(
'name' => 'Sidebar',
'id' => 'sidebar',
'before_widget' => '<div>',
'after_widget' => '</div>',
'before_title' => '<h2>',
'after_title' => '</h2>',
) );
}
// Hook the widget initiation and run our function
add_action( 'widgets_init', 'add_Widget_Support' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment