Home › Forums › Theme support › Prestige – Object grid add country and city › Reply To: Prestige – Object grid add country and city
Hi,
no problem, please open the file “estate-entry.php” and add this after line 133 (” class=”headline”>
< ?php echo get_the_title(); ?>
):
<?php
if(get_the_term_list( get_the_ID(), 'estatecountry', "", "" )!="")
{
echo strip_tags(get_the_term_list( get_the_ID(), 'estatecountry', "", " › " ))." › ";
}
if(get_the_term_list( get_the_ID(), 'estatecity', "", "" )!="")
{
echo strip_tags(get_the_term_list( get_the_ID(), 'estatecity', "", " " ));
}
?>
It’s not tested but it should work…