在我的opencart中我在产品类别页面中有图像。 如果我在类别中将图像设置为类别,如果我还没有设置图像显示onather one。
<?php if ($thumb) { ?>
<div class="category-img" style="background: url('<?php echo $thumb; ?>') no-repeat;"></div>
<?php }else{ ?>
<div class="category-img" style="background: url(image/catalog/category/default-thum.jpg) 50% 50% no-repeat;"></div>
<?php } ?>
我想修改代码。
如果我已设置图像然后显示图像, 否则如果 没有显示。
有人可以告诉我如何修改代码吗?
答案 0 :(得分:1)
使用三元运算符。检查此代码:
<div class="category-img" style="background: url('<?php echo ($thumb ?: 'image/catalog/category/default-thum.jpg'); ?>') 50% 50% no-repeat;"></div>
{{3}}