Return to Snippet

Revision: 12641
at March 23, 2009 01:49 by kristarella


Initial Code
function custom_nav_menu() { ?>
    your custom menu
<?php }

function place_menu() {
    if (is_single() && in_category(array('5','6','7')) || is_category(array('5','6','7'))) {
        add_action('thesis_hook_after_header', 'custom_nav_menu');
    } else {
        remove_action('thesis_hook_before_header','thesis_nav_menu');
        add_action('thesis_hook_after_header','thesis_nav_menu');
    }
}
add_action('thesis_hook_before_html','place_menu');

Initial URL
http://diythemes.com/forums/thesis-customization/4512-custom-menus-if-cat-two-menus-if-else-one-menu.html#post23140

Initial Description


Initial Title
Rearrange Thesis nav

Initial Tags
wordpress

Initial Language
PHP