Last active
May 7, 2018 19:29
-
-
Save anatol06/faa40fb7dd0aa92cdfe70e31271a95cf to your computer and use it in GitHub Desktop.
Register One Widget
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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