

<?php
$category = get_terms('task_categories');//custom category name
foreach ($category as $catVal) {
echo '<h2>'.$catVal->name.'</h2>';
}
?>
<?php
$category = get_terms('task_categories');//custom category name
foreach ($category as $catVal) {
echo '<h2>'.$catVal->name.'</h2>';
}
?>
<?php $category = get_terms('task_categories');//custom category name foreach ($category as $catVal) { echo '<h2>'.$catVal->name.'</h2>'; } ?>