<?php
$taxonomy = 'category';
foreach (get_terms(['taxonomy' => $taxonomy, 'parent' => 0]) as $parent_term) {
if ($parent_term->slug === 'recommended') {
continue;
}
echo "<h2 id='" . esc_attr($parent_term->slug) . "'>" . esc_html($parent_term->name) . "</h2>";
echo "<hr style='margin-top: -19px; margin-bottom: 15px;'>";
echo "<p style='margin-bottom: 0;'>" . esc_html($parent_term->description) . "</p>";
global $wp_query;
$wp_query->queried_object = $parent_term;
$wp_query->is_tax = true;
echo do_shortcode(' ');
echo "<div style='margin-bottom: 80px;'></div>";
}
$wp_query->queried_object = $original_queried_object;
$wp_query->is_tax = $original_is_tax;
?>