Navigation Menu is a theme feature introduced with Version 3.0. WordPress includes an easy to use mechanism for introducing customised navigation menus into a theme. In order to incorporate menu support into your theme, you need to add a few code segments to your theme files.

learn more… | top users | synonyms (4)

0
votes
0answers
26 views

How to add drop down sub menu from database fields in the particular menu slug

I am creating a menu(not in admin panel) in wordpress, and I want to add drop down menu from my database table fields in a particular menu slug? How can I achieve that, using code? I found the ...
1
vote
2answers
440 views

Adding a Nav menu to post admin

i want insert a dropdown menu with list of menus, that i've created in nav-menu.php, to post-admin... For example, when i'm creating a post, i want insert a menu "Paul" in a post (only a post that i ...
2
votes
1answer
16 views

Where to update the Static Pages Blacklist for Multisite Install?

Where in the menu system is the link to this blacklist? As referenced in the codex https://codex.wordpress.org/Multisite_Network_Administration Also note that the blog prefix is not used for ...
0
votes
1answer
34 views

Walker_Nav_Menu exeption

I'm currently working on a WordPress site and whenever in the admin I go the Appearance > Menus page I get the following error: ErrorException: Runtime Notice: Declaration of ...
0
votes
0answers
28 views

post count on toggel meny - product category

I want to add post count on product catalog at widget toggel menu. so product catalog menu will have post count examp computers (2), PC (15) etc. below is the php lines <?php /** * Your ...
0
votes
1answer
155 views

magic “MENU” button under Twenty Twelve theme

I'm using Twenty Twelve with one of my sites on WordPress and someone told me that the site wasn't appearing as it should. She told me that instead of the menu, she saw a "MENU" button, which if ...
3
votes
2answers
113 views

Move admin menu at the end

I installed a plugin for my users in WPMU and I want to make it appear at the end of the admin menu .... I tried this but the menu never appears at the end: function custom_menu_order($menu_ord) { ...
0
votes
1answer
26 views

Header links also appearing in the footer

In my menu area of the word press admin I have access to place links in both the h "main menu" and the "footer links" register_nav_menus(array( 'main_nav' => 'The Main Nav', 'footer_links' ...
0
votes
2answers
681 views

Adding a 'mega menu' to my site without a plugin

Can anyone suggest the best way to go about adding a 'mega menu' to my wordpress navigation without using a plugin? The content in the mega menu itself does not need to be editable via the CMS ...
0
votes
0answers
20 views

Adding new Settings Field to Appearence -> Menus using the Settigns API

I would like to add a 3rd text field to the admin page for custom menus called "Link Description" beneath the Navigation Label and Title Attribute Fields. I know that I need to use the ...
0
votes
1answer
29 views

Automatically Generated Menu pages

I am a designer for a website, which I had a developer build in wordperss for me. Each time a new page is created, it is automatically added to my menu bar. Is this something the developer has built ...
2
votes
1answer
127 views

Nav Walker current menu item not displaying

I'm building a theme on top of a starter theme (wp-bootstrap) and am having trouble getting the Nav Walker to show the current menu item. current-menu-item is not there when I use a web inspector on ...
0
votes
1answer
21 views

Wordpress Navigation

I have my html code for menu as follows: <div class="menu"> <ul> <li><a href="index.php" >Home</a></li> <li><a href="aboutus.php" ...
3
votes
3answers
2k views

Add a .last class to the last <li> in each ul.sub-menu

I've seen a lot of code on how to add a first and last class to a WordPress menu, but in my instance I would like to add a last class to the last li in the sub-menu that WP generates. Here's what I ...
4
votes
1answer
123 views

Nav Menu meta failing to import

I'm the author of the Nav Menu Roles plugin that lets you display/hide menu items based on the user's role. It has come to my attention that the menu item meta does not import when using the regular ...
0
votes
1answer
105 views

wp nav menu set limit only on top levels

I wonder if anybody knows this! How to set limit to toplevel menu items in wp nav menu. Example i have this menu in my admin dashboard. IMAGE PREVIEW I would like to count ONLY top level items and ...
0
votes
0answers
26 views

Theme menu items are added by latest items first

I am using a theme that is adding menu items and ignores the Wordpress menu editor. The way it adds menu's is like this: It adds all pages to the menu, and in the order you add the page - So if you ...
-1
votes
1answer
63 views

Roots-theme dropdown bug below 979px [closed]

Im using the wordpress theme "roots". If the width of the site is below 979px the navigation disappears and the tablet menu-button appears. If you click on a dropdown-menu, the height of the ...
1
vote
2answers
148 views

How can I Add a variable PHP in the Menu Nav

I want to add a variable in the Menu, for passing a value in all my page. The purpose is to retrieve a value for transport to another web site (from my website links) to the tracking, this value ...
0
votes
1answer
358 views

Populate wordpress menu with link to custom field value (file download)

I have an additional menu that appears on some single.php pages. To this menu I would like to add an li with a link to a PDF which is uploaded to the post by a custom field (advanced custom fields ...
1
vote
0answers
36 views

Creating Category Specific menus

I have a question.. I am trying for this since many days.. but didn't get success. My requirement is say I have 5 categories: cat1, cat2 cat3 cat4 cat5 Now each of category has 'N' number of posts.. ...
1
vote
1answer
3k views

How to add posts to custom menus?

I'm just beginning to work the "Custom Menu" functionality that was introduced in 3.0 into my theme. I like everything about this new capability and API, with one exception: Why no posts? I can ...
0
votes
0answers
29 views

Looking for a way to give deeper links on the menus

Is there anyway to make links as sections? for example: www.mywp.com/en/company/about www.mywp.com/en/company/contact www.mywp.com/en/company/jobs www.mywp.com/en/product/one ...
0
votes
1answer
51 views

How to display conditional-content if wp_nav_menu( $args ) retruns something

I have a sidebar that displays child links of the current page (using this solotuin by http://wordpress.stackexchange.com/a/2809/27414) which works perfectly. If there is child links to be displayed ...
4
votes
4answers
5k views

Add Class to Specific Link in Custom Menu

I know you can add a class in the custom menu options, but it adds it to the LI before the A. I want to apply the class directly to this specific A rather then the whole LI. So instead of the output ...
0
votes
0answers
66 views

Add elements to submenu using wp_nav_menu

I got to know how to add a menu and then create hierarchy till 2 levels. Here is my code: //give your menu a name $name = 'sets'; //create the menu $menu_id = wp_create_nav_menu($name); //then get ...
1
vote
2answers
98 views

Using my WordPress menu on another platform

I have a WordPress site and am adding a Shopify-hosted e-commerce section which will be hosted on their servers and accessible via a subdomain. Is there any way to mirror the WordPress Navigation for ...
0
votes
1answer
34 views

Function Reference for custom link in Admin Menu Management Page

What is the function reference for the text within the URL field in the Admin Menu page? I have a PHP function that is utilizing the_content function reference to look for specific file paths and ...
1
vote
1answer
26 views

Possible Menu Hack?

This is the craziest WP issues I've ever had...so my homepage main navigation reads like so...."home" "official artwork" "my artwork" "about" "links" "contact" but when I click on any other page my ...
0
votes
1answer
42 views

Using _s theme, menu changes do not affect header menu

I'm using the _s theme and seeing the header menu point to 'Home' and 'Sample page'. in functions.php, we have register_nav_menus( array( 'primary' => __( 'Primary Menu', 'mytheme' ), ...
0
votes
0answers
60 views

Menu item disappears when logged out [closed]

I have a very peculiar issue with Woocommerce products category menu item. The problem is that when I log out the menu item disappears, I can still access the page via categories widget in the ...
0
votes
0answers
22 views

Add a class ONLY to link tags of top level menu elements

Is there a way that I can add a custom class to the <a> within my custom menu but ONLY for top level links? So, for example, this would be my basic menu markup; <ul class="menu"> ...
0
votes
1answer
22 views

Is there an action for save_menu and/or update_menu?

I want to "save" my menus into transients. I want to update those when there's been any changes to the menus via the admin custom menus. I've looked for an action but can't see to find anything. ...
0
votes
1answer
81 views

Display all submenus

For a custom jquery menu I'd like to show all submenus and hide / show each on demand. However my problem is to show all submenus in the first place. As of now I am managing the first level through ...
1
vote
2answers
204 views

Create dropdown list post

I want to create a drop down list that will list all the posts in the category. I want the drop down list to appear on every post. So for example if I view a post that belongs to category Apples it ...
0
votes
0answers
41 views

“Add to Menu” Button for Custom Menus Not Working [closed]

I am having an annoying problem. When I try to add a new page to a custom menu on my site, the little indicator graphic just keeps spinning and the process never completes. It seems from this search ...
1
vote
1answer
135 views

how to get nav menu list through menu name in wordpress

How to get nav menu list through menu name in WordPress I'm using this code by this code but showing all pages not working with custom nav menu name <?php ...
0
votes
2answers
196 views

How can I disable parent menu item links?

I don't want to have the parent menu items of my site's nav menus linking to a separate page. For one thing I don't want to have a superfluous page. For another these links hobble site navigation for ...
0
votes
1answer
117 views

define css class in functions.php

In my theme I use theme options to set colors to categories (heading colors, dividers colors etc etc) The way I do it is defining variables which holds a color hexa like so: $category1_color = ...
0
votes
1answer
36 views

How to add menù section to my WordPress template?

I am pretty new in WordPress blog and I am developing a blog with this template: http://scorejava.com/wordpress351 As you can see at the top of the page there is a "menù" that only show the page in ...
0
votes
1answer
39 views

Showing Custom Menus in the sidebar

I want to get custom menu in my top level page and the sub pages which are not child of the top level pages. I got many examples using wp_list_pages but it requires the sub pages should be the child ...
1
vote
2answers
1k views

Custom Post Types don’t highlight in menu nav

Working on a theatrical events site. The structure requires several separate events areas, each with a top page listing events in the particular area, and corresponding individual events pages ...
0
votes
1answer
35 views

wp_nav_menu - Collapse with PHP

How can wp_nav_menu be used to collapse and expand elements with PHP? Some walker function? Plugin maybe? What it looks like in wp-admin menus About Customers Cases Contact Contact us ...
2
votes
2answers
160 views

wp_nav_menu show 1 item only

I was reading Wordpress documentation and also trying to find some clear example of how to do this but I couldn't, sorry if this is posted elsewhere but I did my best trying to find an answer before ...
0
votes
1answer
102 views

Adding category ID or slug to WP Nav Menu

Is it possible to add the id or slug of a category in the output of wp_nav_menu menu's? For example, the standard output of wp_nav_menu is: <div class="menu-header"> <ul ...
0
votes
2answers
35 views

How to add a page to header that is outside of WordPress?

I have a page on my site that is not a page in WordPress. How can I add it to the header? EDIT: The page is .php. It is outside of the theme structure.
0
votes
1answer
730 views

Admin top level menu, pointing to an external url

I want to create a entirely new top level menu in the admin menu section, and have that be an external link, is this even possible with the current system? The solution that t31os provides in this ...
0
votes
1answer
73 views

replace current_page_item class in menu

I want to replace below class with active class in menu: .current-menu-item and .current_page_item I am already using a menu callback which add a class dropdown in child menu: class ...
0
votes
0answers
27 views

restrict admin from viewing some pages

i have basically created a membership website where if A logs in on the top bar it says A'S ACCOUNT (which only he can see) then when B logs in on the top bar it says B'S ACCOUNT (which only she can ...
0
votes
2answers
100 views

how do i get pages to be visible to only members that are logged in

Hi i want to make a page for each user on my website. When a user logs in i want them to be able to click on pages that are just designed for them (basically when they log in i want them to be able to ...

1 2 3 4 5 20