Skip to content

Instantly share code, notes, and snippets.

@braddalton
Last active December 15, 2015 01:29
Show Gist options
  • Save braddalton/5180740 to your computer and use it in GitHub Desktop.
Save braddalton/5180740 to your computer and use it in GitHub Desktop.
// Register After Post Widget - 2013 Child Theme
function wpsites_after_post_widget () {
register_sidebar( array(
'id' => 'after-post',
'name' => __( 'After Post', 'twentythirteenchild' ),
'description' => __( 'This is the after post widget.', 'twentythirteenchild' ),
) );
}
add_action( 'widgets_init', 'wpsites_after_post_widget' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment