Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

por_fracciones_terms

😀

// WP_Term_Query arguments
$args = array(
	'name'                   => array( 'ARTÍCULO21', 'ARTÍCULO70', 'ARTÍCULO71', 'ARTÍCULO80', 'ARTÍCULO81', 'ARTÍCULO82' ),
);

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

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