我想使用 php 代码在 Magento 的产品标题中附加 sku。任何人都可以请帮助我。
<?php
//set empty title
$title = '';
if ($_product = Mage::registry('current_product'))
{
$title = $_product->getName();
$pos = stripos($title);
$title = $this->getTitle();
}
?>
<title><?php echo $title; ?> | test</title>
繁花如伊