获取Magento中属性的值,名字和其它信息
产品的属性是一个非常重要的功能,我们经常会用到。在这篇文章中我将总结的一些产品属性信息的输出方法跟大家分享一下。
1、获取属性集合
$attribute = $_product->getResource()->getAttribute(‘attribute_code’);
2、获取属性类型
$attribute->getAttributeType();
3、获取属性Label
$attribute->getFrontendLabel();
4、获取属性默认值
$attribute->getDefaultValue();
5、获取属性设置值
$attribute->getFrontend()->getValue($_product);
6、检查属性是否可见
$attribute->getIsVisible();
7、检查属性是否是必填项
$attribute->getIsRequired();
电商网站开发服务。
版权声明:本站内容源自互联网,如有内容侵犯了你的权益,请联系删除相关内容。
上一篇:如何禁用Magento事件 下一篇:Magento中“Google +1”插件