Get all child categories only of custom taxonomy | WordPress
I am trying to get list of only child categories of custom taxonomy, but getting output as all parent and child terms. $countries = get_categories(array( 'hide_empty' => true, 'taxonomy' => 'locations-category', 'orderby' => 'name', 'order' => 'ASC', 'tax_query' => array(…