有一些代碼,因爲這:如何做magento的條件?
<div class="test">
<div class="upsell-tags">
<?php echo $this->getChildHtml('product_additional_data') ?>
<?php echo $this->getChildHtml('upsell_products') ?>
</div>
</div>
我想<div class="test">
前添加一個if條件。我該怎麼做?謝謝。 當我添加下面的代碼,它顯示我一個錯誤。爲什麼?
<?php if(isset($this->getChildHtml('upsell_products'))):?>.....
<?php endif;?>