Discover, trust, install: FAIR 1.0 is here
Advanced Custom Fields: Nav Menu Field
Version: 2.0.0
Description
Add Navigation Menus to Advanced Custom Fields (ACF) with the Nav Menu Field plugin! This plugin adds the Nav Menu Field type to ACF (version 5 & 4), allowing you to select from the menus you create in the WordPress Admin backend to use on your website’s frontend.
Using ACF, you can set the Nav Menu Field to return the selected menu’s:
- ID for lightweight coding,
- Object for more involved programming, or
- HTML (generated from wp_nav_menu) for quickly displaying a menu.
I created this plugin because I needed to display a secondary menu that changed depending on what page you’re on. Most of those pages were children of the same page, but then I had to throw a couple of Custom Post Types in there too. Because of the Custom Post Types, I couldn’t just grab the top most parent for the current page and use wp_list_pages. So I did some research and decided to extend the functionality of my favourite plugin, Advanced Custom Fields. Now when I create a new Page or Custom Post, I just select the menu from a drop down menu!
Feel free to try this add-on on your dev site, ask questions on the support link above, and please review this add-on. By leaving a rating and review, you help this plugin become even better!
Advanced Custom Fields Compatibility
This add-on will work with:
- version 5
- version 4
Installation
Follow the following instructions: https://codex.wordpress.org/Managing_Plugins#Installing_Plugins
Screenshots
Faq
Installation Instructions
Follow the following instructions: https://codex.wordpress.org/Managing_Plugins#Installing_Plugins
Can you show a quick example of how to use this?
Sure can!
- Create a new field group
- Add a Nav Menu and set the Field Label to
Side Menu
(this will cause the Field Name to beside_menu
) - Set the Nav Menu’s Return Value to
Nav Menu HTML
- Set the Location Rules to Show if “Post Type” “is equal to” “Page”
- Save the Field Group
-
Now in your themes sidebar.php, put the following code before or after any of the div’s with class=”widget-area”
Finally, create or edit a page, select a menu in the Side Menu field, and view the page to see that menu in the sidebar!
Will you make this plugin compatible with Advanced Custom Fields v3?
No.
Why does the Nav Menu returned by your plugin look like an unstyled list of links?
So that you can style it yourself. I don’t want to step on your toes 🙂
I added the Nav Menu Field to Pages, selected my menu when creating a new page, but the menu doesn’t show. What gives?
First, check that you added the necessary ACF code to your templates. If you don’t know what I’m talking about, read up on how to use Advanced Custom Fields. If you’re already familiar with ACF and you still can’t figure out why the menu isn’t showing up, start a new support thread, include details and a little code, and I’ll do my best to help you.
Reviews
Still works perfectly with ACF 6
By Gabor Lippert (lunule) on February 19, 2023
All in the title 🙂
Quick addition: as others feedbacked here many years ago, this plugin is a must-have to all developers actively working with ACF - it's a shame it's not showing up in the WP plugins earch for the sole reason it hasn't been updated for a long time.
Works with 4.9.8
By Nikola Dimitrijević (bukizvanipera) on October 31, 2018
Exactly what I needed
By Sheenmo (guanyixi) on June 28, 2018
Let's don't make any mistakes here...
By Yuval (yuvalsabar) on June 13, 2018
Oldie but Goodie
By Tracy Rotton (taupecat) on December 15, 2017
Works great!
By Darius (Darius89) on November 4, 2017
Does the job 🙂 And still works !
By pitichampi on September 20, 2017
Does what it says
By Ben Pearson (benpearson) on October 11, 2016
Works great
By torchs on September 3, 2016
The plugin is just what I was looking for to display menus dynamically. Works great.
Most Used
By smhimms on September 3, 2016
I'm a developer at an advertising agency and this is my most used plugin, I use it on every WordPress website for every client. It makes everything editable in such a clean manner.
Changelog
2.0.0
- Added ACF v5 class.
- Updated code to follow coding standards
- Updated the ACF v4 class to use the updated code found in the ACF v5 Class
1.1.2
- Fixed a silly mistake related to allowing Null for a Nav Menu Field. Basically, it was storing the string “null” when you don’t select a menu, that’s taken care of now.
1.1.1
- I forgot to add a default value for the Menu Container field, so I added ‘div’ as the default value. If you upgraded from 1.0.0 to 1.1.0 and had WP_DEBUG enabled, you would receive a warning about an unknown index. Since I like debug mode to run without warnings, I fixed this.
1.1.0
- Added a field which allows users to choose the containing element for the Menu’s ul. See wp_nav_menu’s container parameter
1.0.0
- Initial Release.