8

Dropdown Multi Widget


Description

This widget allows you to insert both post & categories to your dropdown menu. You can include:

  • Pages
  • Categories
  • Links
  • Homepage link
  • Login/logout links
  • and Register/Site Admin links in your menu.
PLEASE NOTE: This widget comes together with the dropdown menu widget. It will be installed when you install the dropdown menu widget. Just check your “Available Widgets” page and you will see them there.

You can download the plugin from the official wordpress plugin page here.

If you like this plugin, you may also like my other wordpress plugins:

Donate

If you like this plugin you can donate using the button below:


Thanks for your support!

8 Comments

  1. Ken Dawes :

    Hi,
    Great plugin!
    I’m trying out your Dropdown Multi Widget and am finding that even though I have added 2 pages to the “do not display in menu” in the dropdown set-up area, they are still showing up in the menu.
    Any clues?

    Thanks!
    Ken

  2. r0bal :

    where do I have to put to add Archives to this menu?

    • r0bal :

      ?php wp_get_archives(‘type=daily&limit=15′);

      • shailan :

        Add this to the end of functions.php file in your theme folder. You will see it in Editor under appearance.

        function add_archives(){
        $args = array(‘type=daily&limit=15′);
        echo ‘<li><a href=”#” rel=”nofollow”>Archives</a><ul>’;
        wp_get_archives( $args );
        echo ‘</ul></li>’;
        } add_action(‘dropdown_list_after’, ‘add_archives’);

        • r0bal :

          But it gives me this on my web page:
          function add_archives(){ $args = array(‘type=monthly′); echo ‘
          Archives
          ’; wp_get_archives( $args ); echo ‘
          ’; } add_action(‘dropdown_list_after’, ‘add_archives’);

          and the link is not in dropdown menu…

      • shailan :

        You need to put this code before the closing “?>”
        So it will run as php.

        Also it won’t work for dropdown multi.
        I advice upgrading to wp3 and using wordpress nav-menu support to build your menus. You can then add anything you like.

        • r0bal :

          I don’t understand this wp3 menus. I tried to make one, but I couldn’t manage to add dropdown archive menu into it… or even dropdown blogroll links…

One Trackback

Post a Comment

Your email is never published nor shared. Required fields are marked *

*
*