You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To get started with the **Nav Menu Field** in SCF, follow these steps to configure and display a WordPress navigation menu:
11
6
12
-
##Common Use Cases
7
+
### **Step 1: Create a New Field Group**
13
8
14
-
1. Use to output WordPress navigation menu anywhere.
9
+
First, create a new field group in **Advanced Custom Fields (SCF)**. This field group will hold your custom fields, including the **Nav Menu** field.
15
10
16
-
## Tips
11
+
1. Go to **Custom Fields > Add New** in your WordPress admin panel.
12
+
2. Title your field group and choose the location rules for where this field group should be displayed (e.g., on a specific page or post type).
17
13
18
-
- to add more Menu Container use ``wp_nav_menu_container_allowed_tags`` hook
14
+
### **Step 2: Add a Nav Menu Field**
15
+
16
+
Once you've created a new field group, add a new field of type **Nav Menu**. This field will allow users to select a navigation menu from the available menus on your site.
17
+
18
+
1. Click **Add Field** within the field group.
19
+
2. Set the **Field Type** to **Nav Menu**.
20
+
3. Configure the necessary field options based on your needs.
21
+
22
+
### **Step 3: Configure Options**
23
+
24
+
Configure the field options for the **Nav Menu** field to tailor it to your needs.
25
+
26
+
-**Return Value:** Choose how you want the selected menu to be returned:
27
+
-**Menu ID:** The ID of the selected menu.
28
+
-**Nav Menu HTML:** The raw HTML of the selected menu.
29
+
-**Nav Menu Object:** The complete menu object, including properties like the menu name and term ID.
30
+
31
+
-**Menu Container:** This option determines the wrapper tag for the menu when the **Nav Menu HTML** return format is selected. Common options include `div`, `nav`, or `none`. You can also add additional container tags using the `wp_nav_menu_container_allowed_tags` filter.
32
+
33
+
-**Allow Null:** Set this option to **true** or **false** to allow or disallow a **null** value (i.e., no menu selected). When **true**, an empty option will be available for the user to select.
34
+
35
+
### **Code Example: Basic Setup**
36
+
37
+
Here's how you can implement the **Nav Menu Field** in a template file:
38
+
39
+
```php
40
+
// Check if the Nav Menu Field has a value
41
+
$menu_id = get_field('your_nav_menu_field_name');
42
+
43
+
if ($menu_id) {
44
+
// Get the menu object or HTML based on your configuration
45
+
$menu_html = wp_nav_menu(array(
46
+
'menu' => $menu_id, // Use the menu ID
47
+
'container' => 'nav', // Use a 'nav' container
48
+
'echo' => false, // Don't output directly; return the HTML
49
+
));
50
+
51
+
echo $menu_html; // Output the menu HTML
52
+
}
53
+
```
54
+
55
+
## **Common Use Cases**
56
+
57
+
1.**Use to Output WordPress Navigation Menu Anywhere:**
58
+
The **Nav Menu Field** allows you to output a WordPress navigation menu in custom locations across your site, such as in custom templates, widgets, or shortcodes.
59
+
60
+
## **Tips**
61
+
62
+
-**To Add More Menu Containers:**
63
+
Use the `wp_nav_menu_container_allowed_tags` hook to add additional allowed container tags for the Nav Menu field. This will enable more flexibility in the menu's wrapper tag.
64
+
65
+
Example:
66
+
```php
67
+
function my_custom_menu_container_tags($tags) {
68
+
$tags[] = 'section'; // Adds 'section' as an allowed container tag
0 commit comments