如何使用if和else复选框或在redux中选择

时间:2017-04-19 07:56:10

标签: php wordpress redux

我想使用Redux复选框并选择选项,就像在前端一样。 在Redux documents我没有发现任何关于if& amp;其他

我想要这样的事情:

<?php if ($redux_demo['opt_checkbox']) { echo "my text" } else { echo"the other text" } endif ?>

2 个答案:

答案 0 :(得分:0)

  <?php 
$checkboxset = "ABC";
if ($redux_demo['opt_checkbox']==$checkboxset) { echo "my text" } else { echo"the other text" } ?>

答案 1 :(得分:0)

试试这个

if (!(isset($redux_demo['opt_checkbox']))) 
{ 
    echo "my text"; 
}
else 
{ 
    echo"the other text" 
}