Reply To: Add a widgetized area under the header

Homepage Community Forums Epik Theme Support Add a widgetized area under the header Reply To: Add a widgetized area under the header

#3657
Glade
Customer

    I got it close with this code.

    add_action( ‘genesis_before_content’, ‘include_sidebar_widget’ );
    /** Loads a new sidebar after the content */
    function include_sidebar_widget() {

    echo ”;
    dynamic_sidebar( ‘featured’ );
    echo ”;

    }

    genesis_register_sidebar( array(
    ‘id’ => ‘featured’,
    ‘name’ => ‘Featured’,
    ‘description’ => ‘This is where a featured section goes’,
    ) );

    But I can’t get it to show up outside the wrap so it spans the entire width of the page.