Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Paul Clark

    (@pdclark)

    MSI ignores child menu items by default. There’s not a filter to change that right now, but you can comment out this line that says “continue”.

    Plugin Author Paul Clark

    (@pdclark)

    That is, change this:

    if ( 0 != $item->menu_item_parent ) {
      // Skip submenu items
      continue;
    }

    to this:

    if ( 0 != $item->menu_item_parent ) {
      // Skip submenu items
      // continue;
    }

    In function wp_nav_menu_objects. The link is highlighting strangely for me — it’s line 256.

    Thread Starter Robert Dall

    (@rdall)

    Works like a charm Paul. I have some slight css alignment to fix. But this is exactly what I wanted.

    Thanks again!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Icons in the Drop Down’ is closed to new replies.