Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End Display last child category in WordPress template Re: Display last child category in WordPress template

#78721
shackep
Member

This is what I ended up using. It seems to be working.


$catpost = get_the_category();
foreach ($catpost as $cat) {
if($cat->category_parent==21){
$namecat= $cat->cat_name;
echo $namecat;
}
}
?>