How to do if statements with an array? Learn how to check whether or not certain user ids are included.
1 2 3 |
if ( !in_array($user->ID, [86,89]) ) { // if this then do... } |
How to do if statements with an array? Learn how to check whether or not certain user ids are included.
1 2 3 |
if ( !in_array($user->ID, [86,89]) ) { // if this then do... } |