Skip to content

Instantly share code, notes, and snippets.

@cccamuseme
Last active June 20, 2019 20:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cccamuseme/d08ad2f0400be313605ba8e9e4a69bfd to your computer and use it in GitHub Desktop.
Save cccamuseme/d08ad2f0400be313605ba8e9e4a69bfd to your computer and use it in GitHub Desktop.
Custom widget area
<?php
/* New Sidebar */
function new_sidebar_widget_init() {
register_sidebar( array(
'name' => 'New Sidebar',
'id' => 'new_sidebar',
'before_widget' => '',
'after_widget' => '',
'before_title' => '',
'after_title' => '',
) );
}
add_action( 'widgets_init', 'new_sidebar_widget_init' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment