• My URL is http://cjsfate.org

    I was wondering how do I change the footer navigation on my site? I don’t want all of the pages listed… they already are at the top. At the bottom I would like maybe the Contact and Donate pages but I can’t figure where to change that. I don’t see anywhere in the theme to do so.

Viewing 2 replies - 1 through 2 (of 2 total)
  • try and locate the navigation code in footer.php (?);

    if it is based on wp_list_pages() http://codex.wordpress.org/Function_Reference/wp_list_pages then you have the ‘include’ or ‘exclude’ as well as the ‘depth’ parameter to work with.

    Thread Starter gproca

    (@gproca)

    <?php $menuClass = 'bottom-nav';
    						$footerNav = '';
    
    						if (function_exists('wp_nav_menu')) $footerNav = wp_nav_menu( array( 'theme_location' => 'footer-menu', 'container' => '', 'fallback_cb' => '', 'menu_class' => $menuClass, 'echo' => false, 'depth' => '1' ) );
    						if ($footerNav == '') show_page_menu($menuClass);
    						else echo($footerNav); ?>

    Where would I do that here?

    [Please post code snippets between backticks or use the code button.]

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Footer Navigation’ is closed to new replies.