The hierarchical tag has no wiki summary.
10
votes
2answers
4k views
How to create a permalink structure with custom taxonomies and custom post types like base-name/parent-tax/child-tax/custom-post-type-name
I've been combing this site and google for the answer and I've come up completely empty. Basically I want to do exactly what this post asks, but I need a hierarchical taxonomy. The answer given in ...
3
votes
4answers
2k views
Custom taxonomy, get_the_terms, listing in order of parent > child
I have a hierarchical custom taxonomy which I can display using print_r(get_the_terms( $post->ID, 'taxonomic_rank' ));:
Array
(
[46] => stdClass Object
(
[term_id] => ...
6
votes
2answers
1k views
How to add a custom metabox to the Menu Management admin screen?
Although I am very thankful to the wordpress core team that they have finally integrated native menu management capabilities I get frustrated with some key elements which I would like to change.
I ...
1
vote
2answers
5k views
Get the the top-level parent of a custom taxonomy term
How would I get the top-level parent of a given term?
I am using wp_get_object_terms to get taxonomy terms on posts, but instead of showing all tagged terms, I only want to show tagged terms' ...
13
votes
1answer
3k views
The Difference Between Hierarchical and Non-Hierarchical Taxonomies?
The question is "What is the Difference Between Hierarchical and Non-Hierarchical Taxonomies?" This question really stumped me at first so I figured it would be a good idea to show the difference to ...
7
votes
2answers
3k views
Integrating a custom post type into a page hierarchy
I'm creating a theme with a custom post type for team members, I've also got the following page structure:
about <-- this is a page
about/team-members <-- this is a page, lists all the team ...
5
votes
2answers
4k views
How to handle a hierarchy with custom post types
I have moved into WordPress for a few days and was quite impressed by all the available features, plugins and polished themes. I have spent quite some times reading documentation about themes and ...
3
votes
1answer
276 views
Determine if Term has Grandparent/Great-Grandparent
I have a custom taxonomy (hierarchical) for which I'm outputting the results. For example's purpose:
--Drinks
----Tequila
------Reposado
------Blanco
----Beer & Wine
------Beer
------Wine
...
11
votes
7answers
3k views
How to show a hierarchical terms list?
I have a hierarchical taxonomy called 'geographical locations'. It contains continents on a first level, and then the countries for each one. Example :
Europe
- Ireland
- Spain
- Sweden
Asia
- Laos
- ...
0
votes
3answers
4k views
get_posts assigned to a specific custom taxonomy term, and not the term's children
Say I have the following taxonomy terms:
Term 1
Term 1.1
Term 1.2
Term 2
Term 2.1
How can I get only posts that are assigned to Term 1 and not include those that are assigned to Term 1.1 or ...
1
vote
2answers
133 views
How to fix a double slash in custom permalinks with hierarchical taxonomy's?
Following the solution from Jeff @ Custom permalinks - post type - hierarchical taxonomy's
I managed to rewrite my url's for custom taxonomy's.
However i do have one thing that bothers me and ...
1
vote
1answer
292 views
Change custom post type to hierarchical after being registered
Very similar to this previous question: Changing 'rewrite' argument after custom post type is registered
I am trying to make MarketPress Products hierarchical - I can do it with hacking the ...
1
vote
4answers
501 views
URL Design for Sub-Posts?
I currently have this:
mysite.com/product-name
mysite.com/another-product
etc where product-name and another-product are posts.
I then have a custom post type called Changelogs, which I have for ...
0
votes
1answer
367 views
Custom permalinks - post type - hierarchical taxonomy's
I did folowed the steps / solution from Jeff it helped me alot with he's settings, got it for about 90% working properly. But getting stuck on the post / postname. It loads now the ...
2
votes
2answers
497 views
Custom post type hierarchical permalinks not behaving as expected for parent/child pages
When you have Pages with children, the permalink structure works something like this:
example.com/parent-page/child-page/
All well and good. Trying to go to this URL:
example.com/child-page/
...
0
votes
1answer
206 views
Display Parent and child taxonomies in seperate drop downs [duplicate]
Possible Duplicate:
How can I display parent and child taxonomies in separate drop downs?
does anyone have solution for the requirement where i have a taxonomy State which is the parent and ...
0
votes
2answers
1k views
How to show only parents subpages of current page item in vertical menu?
I just can't find a way to make it possible to show only current parent items down to current page item in a vertical menu the "wordpress way".
What I want to achieve is the following dynamic ...