Skip to content

Instantly share code, notes, and snippets.

@j-mccarthy
Created November 17, 2014 17:38
Show Gist options
  • Save j-mccarthy/901b1622913edaca8b1a to your computer and use it in GitHub Desktop.
Save j-mccarthy/901b1622913edaca8b1a to your computer and use it in GitHub Desktop.
<?php < Remove if just pulling this snippet into your functions.php file
//* Add Widgets to Site Tagline
add_action( 'genesis_after_header', 'new_widget' );
function new_widget() {
echo '<div class="new-widget_container">',
genesis_structural_wrap( 'new-widget' );
genesis_widget_area( 'new-widget', array(
'before' => '<div class="new-widget widget-area">',
'after' => '</div>',
) );
genesis_structural_wrap( 'new-widget', 'close' );
echo '</div>';
}
genesis_register_sidebar( array(
'id' => 'new-widdget',
'name' => __( 'new widget area' ),
'description' => __( 'This is your new widget area' ),
) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment