Tagged Questions
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
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 ...
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 ...
0
votes
1answer
260 views
$item->url not retrieving url in custom walker?
I've made a custom walker to use with wp_list_pages to modify the output to have thumbnails show. The goal is to have a list show up in a page template, which lists all children with their children.
...
1
vote
2answers
227 views
wp_list_pages() but only show children on the branch you are on
Lets say I have this menu:
Top
|___ Sub 1
|___ Sub Sub 1
|___ Sub Sub 2
|___ Sub Sub 3
|___ Sub Sub 4
|___ Sub 2
...