所以我有三個變數 $blue_tooltip_icon、$red_tooltip_icon 和 $gray_tooltip_icon。現在我希望根據傳遞到 WordPress 短代碼的屬性來輸出特定變數。因此,如果輸入“藍色”,則為 $blue_tooltip_icon;如果輸入“紅色”,則為 $red_tooltip_icon;如果輸入“灰色”,則為 $gray_tooltip_icon。
問題是如何解決這個問題。我嘗試使用 if 語句,但發現這在串聯中是不可能的。
這就是我嘗試透過短程式碼輸出的內容,工具提示圖示會根據透過短程式碼屬性輸入的顏色而變化。
$message = '<span data-title="'.$atts['text'].'" class="tooltip">'.$content .$blue_tooltip_icon.'</span>';
P粉7040660872023-09-10 13:40:58
我認為這對你有幫助。
<?php // Cleaner way $blue_tooltip_icon = 'blue'; $red_tooltip_icon = 'red'; $green_tooltip_icon = 'green'; $atts['text'] = 'john'; $content = 'content'; $icons = [ 'blue' => $blue_tooltip_icon, 'red' => $red_tooltip_icon, 'green' => $green_tooltip_icon ]; $input = 'red'; //$message = '<span data-title="' . $atts['text'] . '" class="tooltip">' . $content . $icons[$input] . '</span>'; // Awkward style with ternary operator $input = 'green'; $message = '<span data-title="' . $atts['text'] . '" class="tooltip">' . $content . (($input == "red") ? $red_tooltip_icon : (($input == "blue") ? $blue_tooltip_icon : $green_tooltip_icon)) . '</span>'; echo $message;