Skip to content

Instantly share code, notes, and snippets.

@lmartins
Created November 22, 2014 12:39
Show Gist options
  • Save lmartins/105fdb5e91dbdf8d71d8 to your computer and use it in GitHub Desktop.
Save lmartins/105fdb5e91dbdf8d71d8 to your computer and use it in GitHub Desktop.
Adds a widget area to the layout including a overall widgets wrapper
add_action( 'genesis_before_loop', 'mw_genesis_after_header_sidebars' );
function mw_genesis_after_header_sidebars()
{
genesis_widget_area( 'utilities-header', array(
'before' => '<div class="widget-area utilities-header">',
'after' => '</div>',
) );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment