Skip to content

Instantly share code, notes, and snippets.

@ericyork
Created October 9, 2018 14:57
Show Gist options
  • Save ericyork/28d6a16bda3487b5e38b7eaf866f3648 to your computer and use it in GitHub Desktop.
Save ericyork/28d6a16bda3487b5e38b7eaf866f3648 to your computer and use it in GitHub Desktop.
// Registers new home page widget
add_action( 'widgets_init', 'my_widgets_init' );
function my_widgets_init() {
register_sidebar( array(
'name' => 'My Homepage Widget',
'id' => 'my-homepage-widget',
'before_widget' => '<div class="homepage-widget">',
'after_widget' => '</div>',
'before_title' => '<h3>',
'after_title' => '</h3>',
) );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment