<?php
/**
* Adds a page template with the secondary sidebar
* on the left of the page
*/
//* Force Sidebar Content layout
add_filter( 'genesis_site_layout', '__genesis_return_sidebar_content' );
//* Append custom sidebars after the .entry container
add_action( 'genesis_after_header', 'display_secondary_sidebar', 99 );
function display_secondary_sidebar() {
// Remove the Primary Sidebar from the Primary Sidebar area.
remove_action( 'genesis_sidebar', 'genesis_do_sidebar' );
// Remove the Secondary Sidebar from the Secondary Sidebar area.
remove_action( 'genesis_sidebar_alt', 'genesis_do_sidebar_alt' );
// Place the Secondary Sidebar into the Primary Sidebar area.
add_action( 'genesis_sidebar', 'genesis_do_sidebar_alt' );
}
genesis();