织梦模板checkbox字段在模板中runphp自定义输出
织梦dede自定义字段为多选checkbox时,前台根据checkbox选择的值,对应输出不同的效果,用runphp解决https://www.adminbuy.cn/uploads/allimg/210607/1-21060G0293H12.jpg
首页/列表页 标签写法
[field:字段 runphp=yes,
$arr = explode(',',@me);
$result = '';
for($index=0;$index$arr[$index,";
}
@me = $result;
[/field:字段,
织梦内容页标签写法
{dede:field.字段 runphp=yes}
$arr = explode(',',@me);
$result = '';
for($index=0;$index$arr[$index,";
}
@me = $result;
{/dede:field.字段}
页:
[1]