Plugin info

Total downloads: 105,425
Active installs: 9,000
Total reviews: 21
Average rating: 4.8
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 2
Last updated: 6/27/2018 (2744 days ago)
Added to WordPress: 10/21/2014 (11 years old)
Minimum WordPress version: 3.5
Tested up to WordPress version: 4.7.31
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 2744 days ago • 21 reviews

24/100

Is Widgets in Menu for WordPress abandoned?

Possibly abandoned (last update 2744 days ago).

Compatibility

Requires WordPress: 3.5
Tested up to: 4.7.31
Requires PHP: f

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

Shortcode in Menus
Rating 4.7/5 (81 reviews)Active installs 50,000
Add Featured Image Custom Link
Rating 4.1/5 (15 reviews)Active installs 1,000
Relative Menu Item Plugin
Rating 5.0/5 (4 reviews)Active installs 50
Download Timer Buttons
Rating 5.0/5 (1 reviews)Active installs 30
Link Away
Rating 0.0/5 (0 reviews)Active installs 10
Post title link
Rating 0.0/5 (0 reviews)Active installs 0

Description

Allows you to add Widgets in WordPress Navigation Menus via a custom widget area and an extra box in menu edit screen.

Warning

You will need to have some CSS skills for the widgets to display properly in nav menus.

Usage

View the screenshots for usage instructions.

Source code and Contributions

Fork on Github

Contributions are always welcome

Documentation

  • Most documentation is inline.
  • The hooks (actions and filters) are documented in the Other Notes.
  • Some useful stuff is in the FAQ section.

Hooks

Actions

yawp_wim_pre_callback

Fires before a widget’s display callback is called. Similar to ‘dynamic_sidebar’ action.

Parameters

  • $yawp_wim_widget array An associative array of widget arguments.
    1. string $name Name of the widget.
    2. string $id Widget ID.
    3. array|callback $callback When the hook is fired on the front-end, $callback is an array containing the widget object. Fired on the back-end, $callback is ‘wp_widget_control’, see $_callback.
    4. array $params An associative array of multi-widget arguments.
    5. string $classname CSS class applied to the widget container.
    6. string $description The widget description.
    7. array $_callback When the hook is fired on the back-end, $_callback is populated with an array containing the widget object, see $callback.

Filters

yawp_wim_attribute_prefix

Filters the prefix used in class/id attributes in html display.

Parameters

  • $default_prefix string The default prefix: ‘yawp_wim’

yawp_wim_widget_params

Filter the parameters passed to the widget’s display callback. Similar to ‘dynamic_sidebar_params’ filter

Parameters

  • $params array
    1. array $args An array of widget display arguments.
      1. string $name Name of the sidebar the widget is assigned to.
      2. string $id ID of the sidebar the widget is assigned to.
      3. string $description The sidebar description.
      4. string $class CSS class applied to the sidebar container.
      5. string $before_widget HTML markup to prepend to each widget in the sidebar.
      6. string $after_widget HTML markup to append to each widget in the sidebar.
      7. string $before_title HTML markup to prepend to the widget title when displayed.
      8. string $after_title HTML markup to append to the widget title when displayed.
      9. string $widget_id ID of the widget.
      10. string $widget_name Name of the widget. }
    2. array $widget_args An array of multi-widget arguments.
      1. int $number Number increment used for multiples of the same widget.

yawp_wim_no_widgets_message

Filters the html displayed if no widgets are present in the sidebar.

Parameters

  • $no_widgets_output array The default output

Installation

  • Install the plugin from the ‘Plugins’ section in your dashboard (Go to Plugins > Add New > Search and search for Widgets in Menu for WordPress).
  • Alternatively, you can download the plugin from the repository. Unzip it and upload it to the plugins folder of your WordPress installation (wp-content/plugins/ directory of your WordPress installation).
  • Activate it through the ‘Plugins’ section.

Frequently Asked Questions

The widgets show up, but the display is all messed up.

That’s because the css for the nav menu was never meant to take care of widgets.

For example, if the widget contains a link, you might have to redo it. If it’s a calendar:

.yawp_wim_wrap a {
width: auto !important;
padding: 0 !important;
}

How does one style the widgets?

Inspect element is your friend. Otherwise, the menu item will have the classes menu-item-type-yawp_wim, menu-item-object-yawp_wim.

Additionally, the widget will be wrapped in a div with the class yawp_wim_wrap.

Using these selectors, one can style the widgets.

Also, using various filters (see: Other Notes), especially yawp_wim_attribute_prefix, you can change this yawp_wim prefix to something of your own:

add_filter('yawp_wim_attribute_prefix','my_prefix');

function my_prefix($default_prefix){
    return 'my_prefix';
}

The wrapper class will now be my_prefix_wrap and so on.

How does one use the plugin?

View the screenshots for usage instructions.

Installation Instructions

  • Install the plugin from the ‘Plugins’ section in your dashboard (Go to Plugins > Add New > Search and search for Widgets in Menu for WordPress).
  • Alternatively, you can download the plugin from the repository. Unzip it and upload it to the plugins folder of your WordPress installation (wp-content/plugins/ directory of your WordPress installation).
  • Activate it through the ‘Plugins’ section.

Review feed

No reviews available

Screenshots

  1. Add any widget to the 'Widgets in Menu' widget area.

    Add any widget to the 'Widgets in Menu' widget area.

  2. Your widgets appear in an new metabox on the Edit Menus screen.

    Your widgets appear in an new metabox on the Edit Menus screen.

  3. Add your widget to any menu, just like you add pages or posts.

    Add your widget to any menu, just like you add pages or posts.

  4. Your widget starts appearing in the navigation menu.

    Your widget starts appearing in the navigation menu.

  5. Add css as per taste to finalise the look.

    Add css as per taste to finalise the look.

Changelog

1.0.0

  • Fixed i18n issues.
  • Added Composer support
  • Fix issues with empty widget titles thanks to Niklas Rosenqvist

0.2.1

  • Fixed notice.
  • Moved attribute prefix to main file.

0.2.0

  • Refactored code completely in line with WP standards.
  • Fixed notices by overriding WP’s default add menu item function.

0.1.0

  • Added translation support.
  • Added label for single menu item.
  • Added Widget type + Set title just like widget areas.
  • Improved js.
  • Added minified js.
  • Better filter for html element attribute.
  • Better inline documentation.
  • Improved readme and help.
  • Added screenshots.

0.0.1

  • Initial Plugin uploaded.