我目前的代码如下:
if ( ( $status == 'active' ) ||
( $status == 'full' ) ) {
我还需要包含一个 AND 语句。因此,如果 $status 是 full 或 active 并且 $position 匹配 'need photo' 或 'completed' 然后它会显示。如何包含 AND 语句?
我尝试了以下方法,但似乎没有用:
if ( ( $status == 'active' ) ||
( $status == 'full' ) &&
( $position == 'need photo' ) ||
( ( $position == 'completed' ) ) {
有什么帮助吗?谢谢!:-) 我对这一切都很陌生。我尝试了谷歌,但找不到明确的答案。