wordpress if is in categroy code example
Example: wordpress if is in categroy
// Find out in Wordpress if a single/page is in a chosen category
if (in_category('fruit')) {
echo "This single/page is in category 'fruit'.";
}
// Find out in Wordpress if a single/page is in a chosen category
if (in_category('fruit')) {
echo "This single/page is in category 'fruit'.";
}