The walker tag has no wiki summary.
0
votes
1answer
24 views
ol children instead of ul children
I've created a new walker class to display a custom layout when using the wp_list_comments(); function and this is perfect, the only thing is that all replies to one comment are listed in a <ul> ...
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 ...
0
votes
2answers
22 views
alternating classes on wp_list_pages
I'm trying to have alternating classes on the list created by wp_list_pages.
Currently I have extended the Walker_page class updating the start_el function as follows:
class Sidebar_walker extends ...
0
votes
0answers
31 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(
...
1
vote
1answer
17 views
Limit Custom Crawler to front end only
I am using the following custom walker to hide the Login and Register pages from my navmenu created with wp_get_nav_menu_items.....
function wpse31748_exclude_menu_items( $items, $menu, $args ) {
// ...
1
vote
1answer
60 views
Show thumbnail for category?
I currently have a code where, in my category.php, it checks if the specific category has subcategories, and if it does, show them using wp_list_categories.
I'd love to have these wp_list_categories ...
0
votes
0answers
21 views
Custom navigation links issue
I am using jquery to load the pages into my blog. They slide in. In order to do this, I have to put them in an un ordered list and each page the slides in will have to have this custom structure.
...
1
vote
0answers
76 views
Walker_Nav_Menu doesn't work in wp_page_menu_args filter
I need to hide certain nav items from the menu (based on the password protection functionality) and I'm having trouble getting my custom Walker to work. In fact, I can't even get the standard ...
0
votes
1answer
34 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
...
0
votes
1answer
39 views
How to get current pages menu text?
Is there an easy way of outputting the current pages menu text?
I am looking for something like
<?php echo get_the_title(); ?>
But for the current pages menu text.
1
vote
1answer
83 views
Adding 'active' class to custom taxonomies using walker in functions.php
I'm trying to use the following code in functions.php in order to show a menu with categories (custom taxonomies actually). I simply want it to show active when on the current page. What am I doing ...
0
votes
1answer
65 views
Costum walker with sub menu item count
I have a menu like:
-Item1
--Sub1
--Sub2
--Sub3
--Sub4
--Sub5
--Sub6
-Item2
-Item3
and want to do some costum stuff after x subitems, so I have to determine when x is reached. I tried to define a ...
0
votes
2answers
221 views
How to exclude/remove submenu using Walker_Nav_Menu
i'm working on the new site with custom menu and extended Walker_Nav_Menu class to add custom content to the wp nav menu.
i have registered a custom select box (key: my_custom_menu) in menu from ...
0
votes
1answer
62 views
Does the 'nav_menu_css_class' filter accept 2 or 3 arguments?
I've been using the nav_menu_css_class filter in one of my plugins, implemented as:
add_filter( 'nav_menu_css_class', 'wbwcrf_nav_menu_css_class', 10, 3 );
function wbwcrf_nav_menu_css_class( ...
0
votes
1answer
214 views
Custom Nav Walker menu - Display children count
I have a custom walker menu.( See the code below)
I would like to have my nav menu like this
----------------------------------
Home | link1 | link2 | link3 (5)
----------------------------------
...
1
vote
1answer
118 views
Custom Nav Walker to show siblings and children of current branch?
I have seen very similar (if not exact) queries to this all over Google, but always seem to find something short of what I need. I am trying to create my full vertical menu using wp_nav_menu in my ...
7
votes
1answer
652 views
Custom Nav walker display current menu item children, or siblings on no children
I've been messing around / searching for hours and still can't get this to work, so i'm finally giving in and asking for some help.
I'm trying to write a custom walker that shows only the current ...
0
votes
1answer
143 views
Check is category parent with ids from the childs - get_term_children
I have a hierarchical category list, like:
A (Parent Category)
- B (Child Category)
- C (Child Category)
- D (Child Category)
B (Parent Category)
- E (Child Category)
- F (Child Category)
...
0
votes
1answer
39 views
Custom Links in Walker Class
I am creating a custom walker class.
I need to identify the custom links that will be added to the menu from Appearace > Menu > Custom Link
so that they will have a different format to the page/post ...
-1
votes
1answer
193 views
get_category_children/ the new get_term_children not work
I have a custom Walker for a Advanced Search, that outputs the categories for multiple search by categories in checkbox. The Problem here is, that i use the get_category_children for the children ...
0
votes
1answer
293 views
Adding attributes to <a> link in wp_nav_menu using custom Walker function
I am trying to generate a menu using wp_nav_menu. My expected output is this:
<!-- Main Menu -->
<div class="navbar navbar-blue navbar-fixed-top" style="margin-top:74px">
...
0
votes
0answers
19 views
How to get the excerpt in nav menu walker? [duplicate]
Possible Duplicate:
How can I access the “description” of a menu item?
This leads on from my previous question. I now need the excerpt instead of the nav menu description as not all pages ...
2
votes
1answer
134 views
Determine if a navigation item has children
I am trying to determine if an item has a sub-item with depth 1 or higher. I cannot find anywhere if there is some function/query I can write that grabs the current item looks in the database if it ...
1
vote
1answer
103 views
Adding dynamic content to end_lvl in Walker Class
I'm trying to add unique content to the end of each dropdown (sub-menu). I've managed to edit the end_lvl function of the walker class to add the div to the end of each sub-menu, but now I'm lost on ...
0
votes
1answer
215 views
custom walker to add iconfont to wp_nav_menu
I want to add the font awesome iconfont to my menu list items, so I need to make a custom Walker.
Because the font per menu item will be different I was hoping to use the css class in the WP backend ...
1
vote
1answer
104 views
Customize comment list markup
While creating a new theme, we'll have to customize the comment flow. For doing so there are two functions: wp_list_comments() and get_comments(). I am not very sure how to style the inner elements ...
0
votes
1answer
91 views
Walker_Nav_Menu creating too many closing tags?
created this walker below to create a set of tabs. All looks ok but in the source there are several more than there should be causing validation errors.
I only want to generate a tab for 'question' ...
0
votes
2answers
52 views
How to prevent custom walker from creating sub navigation for pages that are not relatives of the current page?
I have a custom walker that extends the Walker class. My code uses the Walker_Page class as it's base as it does pretty much everything else I want but I need to modify it a bit so that it behaves a ...
4
votes
2answers
104 views
Call custom field into menu item
I have a navigation menu in Wordpress. I would like it to check if the page has a custom field of "menu_icon" and if it does, add that custom field into the menu item it corresponds to. I'm sure this ...
4
votes
2answers
307 views
start_lvl ignored in custom walker_nav_menu
This is my first project involving wordpress and i've got stuck trying to create a custom walker for a footer menu.
I basically want to change the menu from the <ul> <li></li> ...
0
votes
2answers
1k views
add span class inside wp_nav_menu link anchor tag
I found examples adding a class to top level items, so we can display an arrow in menu items with sub-items, but is seems terrible to cope with the already built in WordPress classes, can't display ...
2
votes
1answer
331 views
Walker gives additional taxonomy name?
I'm a beginner at Wordpress, so I would appreciate it if any of you could nudge me in the right way. Anyway, what irks me is how wp_list_categories (and similar functions) produce a lot of unnecessary ...
3
votes
0answers
226 views
Extend walker class with custom post types
I'm using the walker class below, but I can't make it work with custom posts.
class Zwp_Walker_Nav_Menu_Dynamic extends Walker_Nav_Menu {
function end_el(&$output, $item, $depth) {
...
1
vote
1answer
86 views
custom walker wp menu last element
I have a menu list with many subitems that contain submenus as well (at the moment some reach 4th level).
How can I put on each last descended ul of each li element a class ".last"?
for example I ...
-1
votes
1answer
73 views
Navigation won’t update to show full path to single post
I have a site with a custom post type “projects” and two taxonomies “clients” and “mediums”. For the navigation I’m using a custom nav walker (that extends Walker_Nav_Menu). This all works very well ...
0
votes
1answer
165 views
wp_nav_menu check both hierarchy fail?
I see that in menu exist to kind of hierarchy to find the parent and ancestor.
They look for "category or page" hierarchy or for "menu item" hierarchy.
But when both exist in a depth tree branch, ...
2
votes
1answer
165 views
Does Extending Multiple Nav_Menu_Walkers Allow Nested Menus?
Essentially I'm trying to add multiple sub nav menus and I'm pretty close but I just can't seem to find the right tack to solve my problem ...
I'm using a variation of a Stu Nichols CSS Menu ...
...
1
vote
0answers
194 views
wp_nav_menu custom walker - child items
I have written a custom walker to integrate a jquery dropdown nav script into my wp template. I need to add .dropdown-link to each of my parent menu items and .dropdown-wrapper to the unordered list ...
0
votes
2answers
697 views
Adding html elements to wp nav menu
I know how to create wp menus using the functions.php and diaplay it in my sote wherever the menu is required (e.g top menu, footer menu)
I even know how to style it using custom CSS.
I would like to ...
1
vote
4answers
611 views
Custom Walker: how to get ID in function start_lvl
I am making my first custom walker to build an accordion menu. To start with I used this example: http://bitacre.com/2025/custom-nav-menu-walker-for-wordpress-themes
There are two functions. First ...
0
votes
1answer
799 views
Getting menu items like get_pages
I need a way to create a custom HTML template for the wp_nav_menu function. I've heard of custom walker classes, but these don't appear to be helpful enough to achieve what I'm trying to do; at least ...
1
vote
0answers
247 views
Help with walker for nav
For some reason, this walker won't work when I pass in 'echo ' => 0, it always prints the nav, and never returns the nav as a var. I can't seem to figure out where it's by passing that in ...
1
vote
1answer
430 views
wp_nav_menu, walker class, categories as classes of li
OK I'm trying to show my principal menu so I use the following code:
<?php $defaults = array(
'theme_location' => '',
'menu' => '',
'container' => false,
...
1
vote
0answers
318 views
Custom Walker for wp_list_categories
I need some help with making of one Walker Class. Now I’m having a menu with categories and in the dropdown there are some subcategories. The menu is something like that:
<div ...
3
votes
1answer
144 views
List Hierarchical Term List with Count with Related Term
What I have are custom posts (of a custom post type, wps_business) that have two taxonomies (wps_location & wps_type), and I would like to list all the terms from type of a specific location.
For ...
2
votes
1answer
645 views
Add a custom walkter to a menu created in a widget
I know how to add a Walker to a custom menu created by the theme (menu named primary in this example), but how can I target a menu thats created in a widget with the default wordpress custom menu ...
3
votes
2answers
1k views
WordPress Menu Custom Walker Class
We are using a jQuery UI accordian to render a menu in the sidebar. We've already written the markup and javascript and I am just trying to get the wp_nav_menu to output the same markup we've already ...
1
vote
1answer
407 views
Using a menu walker add a custom item at the end of the menu's items
I need to add a search field at the end of a menu in a list item.
I've been looking at walkers but finding it really hard to figure out what is the last item (or even get the total). Also where would ...
0
votes
2answers
262 views
Nav Menu – Add class based on meta keys
I'm trying to find a way that changes the classes of the different nav menu items, based on the value of a meta key in the page.
The menu currently looks like this:
<li ...
1
vote
1answer
426 views
Make wp_list_pages print slugs instead of titles
By default wp_list_pages spits out an unordered list of post titles. To save space in a sidebar menu I´m trying to create a list of page slugs instead of page titles.
I suppose I´ll need to write a ...