The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
93 views

Create subpage - filter parent pages list

I have a website here with a lot of content and with the content where is necessary to create pages in hierarchy. But it is uncomfortable to go through the dropdown in the administration with a lot of ...
7
votes
1answer
863 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
14 views

List CPT by menu_order with children right after parent

I registered a custom post type drawer where my posts are ordered using menu_order. Each drawer could be a child of another drawer, on a multiple depth (parent > child > child of child > child of ...
0
votes
1answer
64 views

how to display all images from their siblings/ from same parent?

I need to know how to display all images from the current page siblings. for eg. I got two parents (Hockey and football) with children. In all this children I got one or several images attached (I've ...
0
votes
1answer
93 views

How to use wp_list_pages on a grandparent page

I am using wp_list_pages to show the page structure on a website. For instance, if I use this code, it will show me the complete child / grandparent heirarchy of the current page the user is on: ...
-2
votes
1answer
33 views

How can I structure my pseudo footer nav code with wordpress codex code?

I'm building my first fully custom wordpress theme, and I'm starting to pull hairs out while trying to write the dynamic footer code! I've tried a bunch of codex this and codex that but can't seem to ...
0
votes
0answers
11 views

How to include child terms within parent?

I have the following for a specific term ID: <?php if (!is_tax( 'listing_category', '542' )) { ?> test1 <?php else: ?> test2 <?php } else { ?> This works great for making ...
0
votes
0answers
13 views

differentiate result in parent and child custom taxonomy in wp-query

I am using wp-query for filtering results on the basis of tax_query. e.g. $args = array( 'post_type' => 'product', 'relation' => 'AND', ...
0
votes
0answers
67 views

How to get the hierarchy position of a taxonomy term? (how many children after / how many ancestors before)

I have a taxonomy "location" In this taxonomy I list locations, hierarchically, from country to state to city. For example, consider the following terms nested like so: 1. European Union ...
-1
votes
0answers
16 views

add the new parent category for the already existing category

How to add the new parent category for the already existing category. For eg, Post1 has a category cat1 if i want to add the Post1 under parentcat1 with the child category of cat1. the post should be ...