Skip to content

Instantly share code, notes, and snippets.

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 braddalton/6122386 to your computer and use it in GitHub Desktop.
Save braddalton/6122386 to your computer and use it in GitHub Desktop.
/** Add newsletter section after header */
add_action( 'genesis_before_content_sidebar_wrap', 'wpsites_newsletter' );
function wpsites_newsletter() {
genesis_widget_area( 'newsletter', array(
'before' => '<div class="newsletter widget-area">',
) );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment