• I have moved my wordpress theme over to live server and my wordpress menus (latest version of WP 3.0) arent working as they should. The menu name is not being added to the ul id that is generated and all pages are being added to menu with no option to choose items to be hidden. This is affecting my suckerfish dd menu which need a menu with a ul id.

    I tried this with the same files on local machine and everything worked just fine.

    Here is an example of my problem:

    https://www.benchmarque.net.au/development/

    And here is the last few lines of functions.php which was working on local drive.. Dont know if there is something incorrect with my php or is there a file that needs to be writable? Help greatly appreciated.

    `<div class=”pagenavigation clearfix”><div class=”left”><?php next_posts_link(‘Older Entries’) ?></div><div class=”right”><?php previous_posts_link(‘Newer Entries’) ?></div></div><?php
    }

    function new_excerpt_length($length) {
    return 20;
    }
    add_filter(‘excerpt_length’, ‘new_excerpt_length’);

    function new_excerpt_more($more) {
    return ‘…’;
    }
    add_filter(‘excerpt_more’, ‘new_excerpt_more’);

    if (function_exists(‘add_theme_support’)) {
    add_theme_support(‘menus’);
    }

    ?>`

  • The topic ‘WordPress 3.0 Menu's Not Working 100%’ is closed to new replies.