Skip to content

Instantly share code, notes, and snippets.

@jlittlejohn
Last active May 2, 2019 05:02
Show Gist options
  • Save jlittlejohn/0e34fc7e8599df49c0bf to your computer and use it in GitHub Desktop.
Save jlittlejohn/0e34fc7e8599df49c0bf to your computer and use it in GitHub Desktop.
WP: Enable Widgets
// Enable Widgets
function arphabet_widgets_init() {
register_sidebar( array(
'name' => 'articles right sidebar',
'id' => 'articles_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