重複の可能性:
複数の条件を持つ php if ステートメント
$style = get_option('background_style');
if ($style == "option1") {
echo '<div class="background-style1">';
}
これは、「オプション 1」で div クラス .background-style1 をエコーしたい場合に得たものですが、「オプション 1」の後にさらにオプションをリストするにはどうすればよいか疑問に思っています。
私はこれを試しました:
if ($style == "option1", "option2", "option3")
しかし、うまくいきません。これを行う正しい方法は何ですか?