Skip to content

Instantly share code, notes, and snippets.

@anatol06
Last active May 7, 2018 19:29
Show Gist options
  • Save anatol06/faa40fb7dd0aa92cdfe70e31271a95cf to your computer and use it in GitHub Desktop.
Save anatol06/faa40fb7dd0aa92cdfe70e31271a95cf to your computer and use it in GitHub Desktop.
Register One Widget
// Widget Locations
function init_widgets($id) {
register_sidebar(array(
'name' => 'Sidebar',
'id' => 'sidebar',
'before_widget' => '<div class="sidebar-widget">',
'after_widget' => '</div>',
'before_title' => '<h3>',
'after_title' => '</h3>'
));
}
add_action('widgets_init', 'init_widgets');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment