Answers for "if post category wordpress"

PHP
1

wordpress if is in category

// Find out in Wordpress (with PHP) if a single/page is in a chosen category
if (in_category('fruit')) {
    echo "This single/page is in category 'fruit'.";
}
Posted by: Guest on May-18-2021
0

if post checked category wordpress

//'10' is the term ID, 'event category' is the taxonomy
if (has_term(10,'event_category')) {
}
Posted by: Guest on February-15-2021

Code answers related to "if post category wordpress"

Browse Popular Code Answers by Language