Skip to content

Instantly share code, notes, and snippets.

@scottnix
Last active December 21, 2015 05:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save scottnix/6259811 to your computer and use it in GitHub Desktop.
Save scottnix/6259811 to your computer and use it in GitHub Desktop.
Thematic move access menu above branding div.
// remove access menu from current position
function childtheme_move_access() {
remove_action('thematic_header', 'thematic_access', 9);
}
add_action('thematic_child_init', 'childtheme_move_access');
// add access menu back into the same header, but on a different priority
add_action('thematic_header', 'thematic_access', 0);
@scottnix
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment