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)

1
vote
0answers
9 views

Custom taxonomy position in admin panel

I can't figure out how to change position of custom taxonomy menu item in the admin panel. Right now I have custom post type-- custom_1-- and another custom post type-- custom_2. For custom_2, I've ...
0
votes
0answers
15 views

Custom Post Type .current-menu-item not applying on Custom Post Type Archive Page

I am working with custom post types and I had trouble with the nav menu not getting the .current-menu-item on my custom post archive page menu item. In fact, when I was on that page or any of the ...
0
votes
1answer
18 views

Hide pages depending on role

I've been trying to find a way to limit the user from seeing some pages in the "pages" menu in the admin panel. I looked in the edit.php file and noticed: } elseif ( 'page' == $post_type ) { ...
0
votes
0answers
9 views

Adding custom menu entry [duplicate]

I want to add a custom (dynamic) login/logout link to the end of the top level menu of the twentytwelve menu. Is there a way to do this by editing the theme (and its functions) only?
0
votes
1answer
29 views

Wrap wp_nav_menu output around option tags for select menu

I have set up a wp_nav_menu in Wordpress. I have 2 parent categories, with 2 sub-categories each, so this produces a nested list. My current code to call this menu is... <?php wp_nav_menu( ...
0
votes
1answer
20 views

changing the labels inside appearance -> menus for some for the fields

So I've create a custom walker for nav menu (i am talking about the menus located at: appearance -> menu -> add a new menu. I now use the following for several things i need: URL Title Attribute CSS ...
0
votes
0answers
11 views

Redirect url in plugin to somewhere else?

I am using WP-SNAP Extended! v1.0.0 and I want to use this alphabetical menu as a sub-menu beneath my header. I managed to get the alphabetical menu in place, but now, if I click on a letter, it will ...
0
votes
2answers
17 views

How do you return a menu with the menu name?

in functions.php, I've defined the following: register_nav_menu( 'home_blocks', __( 'Home Page Posts', 'my_Theme' ) ); In /wp-admin/nav-menus.php, I've added a menu called Home Page Posts and ...
0
votes
0answers
8 views

How do i move a sticky menu below the toolbar for logged in users? [duplicate]

I have created a sticky menu but its hidden by the WordPress tool bar for logged in users and need a solution. Thanks
0
votes
0answers
14 views

How to integrate jPanelMenu jQuery into WordPress

I would love to know how, if possible, to integrate a jQuery plugin into WordPress so it replaces the navigation. Trying to integrate jPanelMenu in my WP site. jPanelMenu is a jQuery plugin ...
0
votes
1answer
28 views

How to retrieve depth of menu into template

In wp_nav_menu i use for the menu, with custom walker, i can get the $depth parameter in the start_el function function start_el(&$output, $item, $depth, $args) but, outside this ...
-1
votes
1answer
10 views

How to reduce space between menu and page content? on Themify - funki theme [closed]

It would be great if someone could help me with this... I would like to reduce the space between my post (a picture) and the main menu, how do i customise the padding(not sure if it called padding)! ...
0
votes
1answer
22 views

Move Sticky Nav Menu Below WordPress Tool bar when tool bar enabled

I've created a sticky menu but its hidden behind the WordPress Toolbar when logged in. How do i move it below the toolbar when enabled and logged in? I was looking for a conditional tag but couldn't ...
0
votes
1answer
44 views

Admin Menu Hack (Left side in Dashboard)

How can I add a Title to my Admin Menu on the left side of the dashboard? Not a link, but just a title? I want do this in my functions and not use a plugin. Also which template file handles this menu? ...
0
votes
0answers
17 views

Building Menus with the latest posts included

Im looking to build a menu system much like that off the huffington post or washington post, with links on one side and the latest articles or other dynamic content on another. Before i go crazy and ...
0
votes
1answer
12 views

wp_nav_menu: indicate by id page grandparents

I have an web site with top-header menu and sidebar menu. Situation, like: header menu: books music movies (if we are now under music) sidemenu: blues jazz dance (if we are now under "Jazz") ...
0
votes
0answers
8 views

blog menu highlighted when bbress topic clicked?

as the title says when I click a forum topic in my local wordpress the link acknowledges the request but when the page is returned the blog menu is highlighted not the forum menu, code is standard and ...
0
votes
1answer
17 views

Navigation menus not showing because of custom post type filter

I use this filter to show content from all custom post types in tags archive page function tagFilter($query) { $post_type = $_GET['type']; if (is_tag()){ if (!$post_type) { ...
0
votes
0answers
23 views

WP_Nav Highlight Parent Issue

I'm trying to figure out how to highlight the parent nav of a page and becoming stuck. I've seen something like this : <li <?php if(is_page('services')) { echo 'class="current_page_item"'; } ...
0
votes
0answers
18 views

How Can I add a menu to the theme from withen the function.php file

I have the following code I'm trying to automatically add a menu to a theme via overriding a function. So I won't have to edit the theme file However the menu is being outputted at the top of the ...
0
votes
0answers
15 views

Dynamic Custom Menus [closed]

I've created a meta box so my client can choose which custom menus to use on certain pages. That seems to be working fine. However, I've created a second menu but only the original menu is showing up ...
0
votes
0answers
23 views

Cannot control wp_nav_menu properly

I'm having a little issue which looks like a bug but probably isn't. Here we go: I simply have this: <?php wp_nav_menu( array('theme_location' => 'primary', 'container' => false, ...
0
votes
0answers
35 views

Alternative to wp_get_nav_menu_items?

I have tried out a technique to implement the wp_get_nav_menu_items, however, a child on the level 1 is being nested inappropriately on the menu. Kindly suggest an alternative of how this issue can ...
0
votes
1answer
20 views

Prevent Menu Shortcode From Formatting

I'm trying to insert shortcodes into menu links (as I need to display a latest post link). I've figured out how to get the do_shortcode part done. However, when I insert a shortcode as the menu link ...
0
votes
0answers
16 views

Programmatically Add Item to WP Multisite Menus

Does WP Multisite require a specific function in order to programmatically add a menu item to a menu? A friend and I have a plugin that adds a menu item to your menu found here. When we created it we ...
1
vote
0answers
22 views

selected menu item

The template I'm working on for a client has the following pages: Home : a custom static page that displays the content of a certain WP page, and the latest sticky posts. This is the front-page.php ...
-1
votes
0answers
32 views

Ajax tabs not animating content

I am having some trouble with jquery ajax in Wordpress. I want Ajax to load content from other pages in a div called "place-content". They are loading but it jumps to the top of the page every time a ...
-2
votes
0answers
26 views

WP create menu items from all category and its sub category [closed]

i'm developing a theme which automatically use categorIES as menu item,
0
votes
0answers
20 views

nav menu with categorized child pages

I'm a bit new to the whole customizing wp nav menus and have exhausted all ideas. I want to output a completely custom nav that first displays all top level list items. ...
0
votes
0answers
33 views

How to create a dropdown menu on Origami theme

I'm doing a Wordpress website using the Origami theme; in this website i have a navigation bar with the page "Blog" in it. When I hover the cursor of the mouse on the page "Blog" I want to create a ...
2
votes
5answers
210 views

how to create a menu with all sub categories?

Is it possible to create a menu with a category such that each time that I had a sub category that automatically display on the menu? As far as I know, if I have a menu with the category "fruit", and ...
0
votes
0answers
15 views

Website Menu order change when we look in Iphone Drop Down menu

I am Working on A Site. their is showing some Menus in Header Like A, B, C,D etc. Their is Also one More menu in header Like X, Y, Z etc. When I am Looking this Site then Menu are Showing in ...
2
votes
1answer
31 views

How to highlight the current page in the nav menu?

I'm customizing a WordPress theme for my school, and I'm a bit annoyed by the fact that the current page in the nav menu is not indicated. For example: You can clearly see that I'm hovering over a ...
0
votes
1answer
41 views

Add <span> within the <li> output of <? wp_nav_menu() ?>

Im currently printing out: <?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?> Which outputs: <div class="menu"> <ul> <li ...
-1
votes
1answer
39 views

Why there is a gap between <UL> and it's container (A drop down menu in wordpress) [closed]

This drop down menu works well in HTML but when i move it to wordpress template, there is a gap between and it's container (.menu-top-container). when the mouse on the menu you will find the gap. ...
0
votes
0answers
37 views

Does wordpress add their own classes into nav menus?

I am building a theme and have noticed that when I create a menu with just html or have it dynamically add menu items based on pages it looks how it was meant to be. Although when I change the code to ...
-1
votes
0answers
29 views

How to make image menu items responsive as a combined group in twenty-eleven [closed]

I am using a twenty-eleven child theme for a static website (www.notquitenormal.net) using images as menu items rather than the default text and there are up to five images on any page menu. My ...
1
vote
0answers
14 views

Navigation menu not being assigned Theme Location

I am setting my navigation menu up using the following snippet in my functions.php. add_action( 'init', 'add_menus' ); function add_menus() { register_nav_menus( ...
0
votes
1answer
19 views

Lost admin “manage_link” capability WordPress. No “Links” menu item in admin menu

Going slightly mad. In the process of upgrading a client's website to WordPress 3.5.1 we've decided to use the built-in WordPress "Links" system to manage their affiliations. I am using the "Admin ...
0
votes
0answers
24 views

Create Nav Menu on theme activation not working

I am running multi-site, i have an activation file which looks like this.... //First check it make sure this function has not been done if (get_option('this_has_run') != "yes") { add_action( ...
0
votes
1answer
58 views

Show different menus for login / logout user [closed]

I am try to show different menus for login and logout user. Here is perfect solution to do this and also work on Twenty eleven theme. But when I try to add this code to my woo theme's defination (in ...
1
vote
1answer
44 views

How to remove a metabox from menu editor page?

I am not sure if it is much different for any page but I am wondering how to remove a metabox from the appearance>menu page without having to go into the wordpress core files and remove it. Is there ...
1
vote
1answer
17 views

Unregister Nav Menu with fallback?

I am trying to create a child theme so theme updates are much easier. I want to remove the parent theme menus and add my own. I know I can modify the header.php file (where these menus exist) and ...
1
vote
1answer
34 views

Add CSS to head depending on nav menu walker

I have a custom walker for a navigation menu on my website, and within it I have some custom CSS that I want to apply to each menu, however, I cannot simply echo it there because even though it works ...
0
votes
0answers
34 views

Custom Nav Walker menu - Don't display children count [closed]

please can you help me not to display those posts quantity in WP nav-menu's brackets? Nav menu code goes like this: <nav id="menu"> <?php wp_nav_menu( array( ...
0
votes
1answer
34 views

Keeping 'current-menu-item' highlight of navigation menu?

The navigation menu of my site is generated via wp_nav_menu( array( 'theme_location' => 'primary') ); Some menu entries are category pages (say /category/news/). This page contains links to the ...
0
votes
0answers
26 views

Unable to add post to the custom menu?

I added custom menu in wordpress 3.5.1 from Appearance-Menus-Menu name. After saving it does not appear on the site. Also the post is also not showing. What are the additional configuration I required ...
-2
votes
0answers
33 views

get parent product category id in wordpress pages

I am using woocommerce for my wordppress site. I have included a product category as main menu and subcategories as it's sub menu using get_categories( $args ). How to set active state for that parent ...
0
votes
0answers
27 views

Group post archive by last two weeks and months

I want to show an archive menu in each page in the following manner: Today Yesterday This week Last week This month Last month Earlier How could I do that?
0
votes
0answers
33 views

Solution for menu limit in wordpress theme twenty twelve?

I just hit a limit for menu items in Wordpress theme Twenty Twelve. The issue is described here, but is largely unresolved: http://core.trac.wordpress.org/ticket/14134#comment:63 I edited my php.ini ...

1 2 3 4 5 20