我想在themeName / template / page / html / head.phtml
中完成这项工作<?php echo $_product->getId()
我正在尝试在head部分添加一个脚本,它需要productID,但它只适用于目录/产品。
有没有办法让它在头部工作?
答案 0 :(得分:3)
尝试
if($_product = Mage::registry('current_product')){
echo $_product->getId()
}