Title: Hooks?
Last modified: August 21, 2016

---

# Hooks?

 *  Resolved [Jory Hogeveen](https://wordpress.org/support/users/keraweb/)
 * (@keraweb)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/hooks-1/)
 * Is there a hook option? I would like to add a featured image on the bottom of
   the menu linked from one of the menuitems or a totally different custom post 
   type.
 * Thanks!
 * [http://wordpress.org/plugins/custom-menu-wizard/](http://wordpress.org/plugins/custom-menu-wizard/)

Viewing 1 replies (of 1 total)

 *  Plugin Author [wizzud](https://wordpress.org/support/users/wizzud/)
 * (@wizzud)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/hooks-1/#post-4204668)
 * wp_nav_menu() (in includes/nav-menu-template.php) applies these filters after
   a menu has been ‘walked’ (ie. filtered by CMW and built as HTML list items)…
 *     ```
       // Allow plugins to hook into the menu to add their own <li>'s
       $items = apply_filters( 'wp_nav_menu_items', $items, $args );
       $items = apply_filters( "wp_nav_menu_{$menu->slug}_items", $items, $args );
       ```
   
 * and after wrapping in a container (if applicable)…
 * `$nav_menu = apply_filters( 'wp_nav_menu', $nav_menu, $args );`
 * You can test for the CMW widget (specifically) having processed the menu by checking…
 * `if( !empty( $args->_custom_menu_wizard ) ){ .... }`
 * Is that the sort of information you need?

Viewing 1 replies (of 1 total)

The topic ‘Hooks?’ is closed to new replies.

 * ![](https://ps.w.org/custom-menu-wizard/assets/icon-256x256.png?rev=1381901)
 * [Custom Menu Wizard Widget](https://wordpress.org/plugins/custom-menu-wizard/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/custom-menu-wizard/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/custom-menu-wizard/)
 * [Active Topics](https://wordpress.org/support/plugin/custom-menu-wizard/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/custom-menu-wizard/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/custom-menu-wizard/reviews/)

## Tags

 * [hook](https://wordpress.org/support/topic-tag/hook/)
 * [image](https://wordpress.org/support/topic-tag/image/)

 * 1 reply
 * 2 participants
 * Last reply from: [wizzud](https://wordpress.org/support/users/wizzud/)
 * Last activity: [12 years, 8 months ago](https://wordpress.org/support/topic/hooks-1/#post-4204668)
 * Status: resolved