Magento中获取特定属性值

<?php echo $_product->getResource()->getAttribute('attr')->getFrontend()->getValue($_product); ?>
//or
<?php echo $_product->getAttributeText('attr');  //string or array ?>

 

你可能感兴趣的:(Magento中获取特定属性值)