[gd_categories]
<?php
$cats = get_terms(array(
'taxonomy' => 'gd_placecategory',
'hide_empty' => false,
));
foreach ($cats as $cat) {
echo '<a href="' . get_term_link($cat) . '">';
echo $cat->name;
echo '</a><br>';
}
?>
[gd_categories]
<?php
$cats = get_terms(array(
'taxonomy' => 'gd_placecategory',
'hide_empty' => false,
));
foreach ($cats as $cat) {
echo '<a href="' . get_term_link($cat) . '">';
echo $cat->name;
echo '</a><br>';
}
?>