Skip to content

Instantly share code, notes, and snippets.

@fovoc
Last active August 29, 2015 14:09
Show Gist options
  • Select an option

  • Save fovoc/44b077e338821dba7248 to your computer and use it in GitHub Desktop.

Select an option

Save fovoc/44b077e338821dba7248 to your computer and use it in GitHub Desktop.
<?php
function move_extra_header() {
global $ss_headers;
// remove the Extra Header
remove_action( 'shoestrap_pre_wrap', array( $ss_headers, 'branding' ), 3 );
// add it before the primary navigation
add_action( 'shoestrap_pre_top_bar', array( $ss_headers, 'branding' ), 1 );
}
add_action( 'init', 'move_extra_header' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment