How to display a term of taxonomy

I found the solution thanks to answer this question: Specify number of posts in my ‘tax_query’ I wanted to show the posts for ‘futbol’ within the ‘tipo_deporte’ taxonomy: <?php $args = array( ‘posts_per_page’ => 2, ‘tax_query’ => array( array( ‘taxonomy’ => ‘tipo_deporte’, ‘field’ => ‘slug’, ‘terms’ => array(‘futbol’), ) ) ); $query = new WP_Query( … Read more

is action hook not working on quick edit?

According to WPSeek’s page on the create_{$taxonomy} action hook, and also the new-to-me WordPress Developers’ docs on the same hook, there are two required parameters: Parameters $term_id (int) (Required) Term ID. $tt_id (int) (Required) Term taxonomy ID. So your function is missing the $tt_id parameter.