Created
August 8, 2017 12:53
-
-
Save domantasg/9633aa64b1f16b7a5a976f0755f51eef to your computer and use it in GitHub Desktop.
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
| // 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