You can use get_query_var( 'term' )
to get the current term and get_query_var( 'taxonomy' ) to get the current taxonomy, then all that is left is to use [wp_dropdown_categories()][1] function with
child_ofparameter and
taxonomy` parameter,
so something like this:
//first get the current term
$current_term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) );
//then set the args for wp_dropdown_categories
$args = array(
'child_of' => $current_term->term_id,
'taxonomy' => $current_term->taxonomy,
);
wp_dropdown_categories( $args );
Done!
Related Posts:
- List post from current taxonomy children
- `get_terms()` with `child_of` and `childless` combined
- How to display only the direct children of a term on a taxonomy page
- How to show children terms even if they are empty
- How to show a hierarchical terms list?
- How to add a default item to a custom taxonomy?
- Why does get_term() require taxonomy? Are term_ids not unique?
- get term by id without taxonomy
- Taxonomy terms sort by… Last name!
- WordPress – Creating multiple versions of the same single-customtype.php depending on selected taxonomy categories
- Exclude custom taxonomy from search results and archive pages
- get_terms with posts that have a different taxonomy with term x
- check if tag exists in wp database
- How to update taxonomy custom field with wp_update_term()?
- Add Thumbnail to wp_list_categories()
- Display Post by taxonomy and taxonomy child
- Fatal error: Call to undefined method stdClass::filter() in wp-includes\taxonomy.php on line 805
- WP native tag suggest metabox. How does it process tag id?
- Change order of WordPress tag cloud
- Count posts for each taxonomy term for each month
- Let users create a new custom taxonomy entry from frontend (without creating a post)
- taxonomy/category term in URL slug irrelevant for post?
- Manually query posts by taxonomy with MySQL
- Custom Taxonomy leads to 404 page
- WordPress built-in method to extract array of term IDs?
- Show only, when taxonomy has posts?
- How do I query a taxonomy term range
- How to Retrieve a Taxonomy Term’s ID?
- get_terms problem : related articles
- Why “Warning: Invalid argument supplied for foreach()”
- WordPress User Taxonomy Saved Values
- get_the_terms error
- Order custom Taxomony alphabetically and reversal after clicking a button?
- Set multiple Post Terms in same Taxonomy
- WordPress Customizer – pass setting value into another control to live update drop-down choices
- custom post type and taxonomy url rewrite without tax-name
- Attaching taxonomy data to taxonomy with wp_insert_post
- Show child terms of current term of the taxonomy
- Problem with orderby
- Display specific taxonomy
- Taxonomy archive + query attachments = duplicate results
- Exclude posts which have any term in a certain taxonomy from the query
- add upload image to default taxonomy
- How to get custom field value in frontend for taxonomy
- Comma separated tax terms, with “and” before last item [duplicate]
- Taxonomy Drill-Down / Plugin Help – hierarchical queries within plugin?
- Syntax help needed: Taxonomy Query
- How to make tags show up in search results?
- Creating links to a page displaying posts from a particular category
- Expired event redirect to parent category
- Different permissions for same type of post
- custom taxonomy terms archive page
- HTML in category name
- How to get my register taxonomy
- How to display taxonomy term custom meta (using wp_get_object_terms?)?
- SQL query joining on taxonomy tables not returning what I would expect
- List sub-taxonomies from current taxonomy
- Retrieve list of taxonomies in json
- Match and Merge Terms in Different Taxonomies
- Can you have seperate sidebars for multiple taxonomy archives?
- Display check marked taxonomies as drop down menu
- Retrieve all term IDs of post
- How to order a taxonomy’s terms numerically, from lowest to highest using get_terms
- update_term_meta not working
- Getting more info about the taxonomy?
- Calling an Archive Page with specific Tag/Tax ID
- Assign Multiple Values from Post Fields to Taxonomy Terms
- how can send a parameter by click on gender-link to filter a post by gender and product taxo
- How to make HTML select options searchable
- How to show taxonomy on front page
- Why doesn’t ‘post__not_in’ work with ‘cat’?
- Order custom taxonomy hierarchy
- Including taxonomy in searches
- Different Sidebar for same Taxonomy
- How Do I Register Two Taxonomies with one Parent of the Other?
- I want to change the slugs of my terms dynamically
- Translation ready code format for taxonomy
- taxonomy_edit_form_fields output after term fields
- Make/create a category for every page
- All tag/category/custom taxonomy archives 404
- Get a specific category in multiple categories
- how to display taxonomy name in do shorcode php tag
- $product->ID in has_term() not working, but manually inputting the ID works, why?
- Can I have have terms with the same slug in the same taxonomy?
- how do you get one specific term from a shortcode attribute?
- How to customize taxonomy edit page
- Fatal error Call to a member function filter()
- Using is_tax with multiple taxonomies
- Taxonomy pages, stop them indexing or being generated?
- How to filter the terms to a special custom taxonomy?
- Pages throwing 404 error on server load
- Display yesterday’s last post’s Custom field from Unique terms of one Taxonomies
- Apply custom taxonomy archive template to children
- How can I create gallery of products and submit data for each product?
- Why does my taxonomy code display the first alphabetical term?
- Custom Taxonomy link out the loop
- get_term_link doesn’t work
- IF taxonomy archive is hierarchical THEN
- Append taxonomy url
- get_terms of specific parent (including the parent itself)