Skip to content

Instantly share code, notes, and snippets.

@dougedgington
Created April 1, 2013 07:45
Show Gist options
  • Save dougedgington/5283704 to your computer and use it in GitHub Desktop.
Save dougedgington/5283704 to your computer and use it in GitHub Desktop.
Output sidebar above the header with the Genesis Framework
<?php
/*
Author: Doug Edgington
Description: If sidebar is active, output sidebar above header with the Genesis Framework
*/
add_action( 'genesis_before_header', 'dee_do_top_message' );
function dee_do_top_message() {
if ( is_active_sidebar( 'top-message' ) ) {
echo '<div id="top-message">';
dynamic_sidebar( 'top-message' );
echo '</div><!-- end #top-message -->';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment