Created
July 13, 2015 20:32
-
-
Save scottnix/d7cce2dce70fe3915b0e to your computer and use it in GitHub Desktop.
Move Thematic Menu to the Top
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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