Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

La Guia de Chile – WP_Term_Query

// WP_Term_Query arguments
$args = array (
	'taxonomy'               => array( 'categoria_comercio' ),
	'hierarchical'           => true,
	'childless'              => true,
	'hide_empty'             => false,
);

// The Term Query
$term_query = new WP_Term_Query( $args );

// The Loop
if ( ! empty( $term_query ) && ! is_wp_error( $term_query ) ) {
	// do something
} else {
	// no terms found
}