Question

I have this code to show custom text in the categories i choose.

<?php if (is_product_category('furnitures')) : ?>
<p>This is the text to describe category A</p>
<?php elseif (is_product_category('kitchen')) : ?>
<p>This is the text to describe category B</p>
<?php else : ?>
<p>This is some generic text to describe all other category pages, 
I could be left blank</p>
<?php endif; ?>

How can i make the text to also be shown in the subcategories of each parent. In the above code are "furnitures" and "kitchen" the parent and have some subcategories.

Thanks!

No correct solution

Licensed under: CC-BY-SA with attribution
Not affiliated with wordpress.stackexchange
scroll top