if ( in_category('18') ) {
action...
}
and as I do to define that same action for more categories? I tried:
if ( in_category('18,19,20') ) {
action...
}
but it didn't work.
if ( in_category('18') ) {
action...
}
and as I do to define that same action for more categories? I tried:
if ( in_category('18,19,20') ) {
action...
}
but it didn't work.
You can find the answer here, but basically "You'll have to use PHP || (logical OR) && (logical AND) in the expression."
correct. tks!
This topic has been closed to new replies.