Skip to content

Instantly share code, notes, and snippets.

@scottnix
Created July 13, 2015 20:32
Show Gist options
  • Save scottnix/d7cce2dce70fe3915b0e to your computer and use it in GitHub Desktop.
Save scottnix/d7cce2dce70fe3915b0e to your computer and use it in GitHub Desktop.
Move Thematic Menu to the Top
// remove menu from current position
function childtheme_move_access() {
remove_action('thematic_header', 'thematic_access', 9);
}
add_action('thematic_child_init', 'childtheme_move_access');
// add menu back into the same header, but on a different priority
add_action('thematic_header', 'thematic_access', 0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment