Skip to content

Instantly share code, notes, and snippets.

@Scordavis
Created April 26, 2017 21:05
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 Scordavis/1bf723333245380cb878d154186fdc27 to your computer and use it in GitHub Desktop.
Save Scordavis/1bf723333245380cb878d154186fdc27 to your computer and use it in GitHub Desktop.
Widgetizing Themes adding widget from 'function.php'
<?php
/**
* Register our sidebars and widgetized areas.
*
*/
function arphabet_widgets_init() {
register_sidebar( array(
'name' => 'Home right sidebar',
'id' => 'home_right_1',
'before_widget' => '<div>',
'after_widget' => '</div>',
'before_title' => '<h2 class="rounded">',
'after_title' => '</h2>',
) );
}
add_action( 'widgets_init', 'arphabet_widgets_init' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment