Forums

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

Home Forums Back End Conditional statement on category.php Reply To: Conditional statement on category.php

#235834
amidigital
Participant

That works, but I would like the child category to apply as well.
Tried a number of things like this, doesn’t work…

<?php $category = single_cat_title('', false);
          $parentcategory = get_category_parents('', false);

if ( $category == 'pga' || $parentcategory == 'pga') {
  echo 'pga cat';
}
?>