Re: Latest Listing
Thanks for the quick reply. I see that that the code below is what can be used to replace the latest listing however I'm not sure where to place and/or replace it? Also, if my category name is "Featured" where would that go in the code?
<span class="price">
<?php $category = get_the_category();
$parent = get_cat_name($category[0]->category_parent);
if (!empty($parent))
{ echo $parent; echo ' > ' .$category[0]->cat_name; }
else
{ echo $category[0]->cat_name; }
?>
</span>