Get multiple term objects by ids
I wonder if you mean something like this modified Codex example: // Fetch: $terms = get_terms( ‘category’, array( ‘include’ => array( 1, 2, 3 ), ) ); // Output: if ( ! empty( $terms ) && ! is_wp_error( $terms ) ) { $li = ”; foreach ( $terms as $term ) { $li .= sprintf( … Read more