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] => 46 [name] => Aplocheilidae [slug]...
I’ve created some custom taxonomies using register_taxonomy, but I want to prevent new terms from being added. I noticed that there is a ‘capabilities’ argument available in register_taxonomy, is...
I am trying to change the checkboxes for the terms on the backend to radiobuttons. I found this topic: Altering the appearance of custom taxonomy inputs however wich helped...
I don’t like the way the taxonomies are displayed within the WordPress admin and was wondering if anyone knew the best way to hook in and change it. Currently...
WordPress 3.5 changed the media management and now the Media Library edit screen uses the default post type UI. Taxonomies are very useful for WP installs with different users...
I need to tell whether or not the current custom taxonomy archive page I’m viewing has child categories. I’ve got a situation where there are a lot of custom...
I cannot figure out how to get the taxonomy term name if I have the taxonomy term’s ID. This is my current code // create a dropdown menu of...
So this is driving me absolutely insane. I’ve spend days trying to fix this and I can’t work out why this is so difficult as surely this is a...
Closed. This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by...
I have a hierarchical taxonomy called ‘tarefa’ I have to display all posts from a child taxonomy. I used get_term_children function function to verify if the taxonomy parent has...