markdown Magento 2 - 获取属性选项

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown Magento 2 - 获取属性选项相关的知识,希望对你有一定的参考价值。

### Magento 2 - Get Attribute Options
```
<?php
$attribute_value = $_product->getData( $attributeCode );
$optionText = $attr->getSource()->getOptionText( $attribute_value );

//the id of the row that has our image
$option_img_id = $attribute_value;

//get all of the options - if we need to find all images
/*
$swatch_option_ids = array();
$options = $attr->getSource()->getAllOptions(false);
foreach($options as $option){
$swatch_option_ids[] = $option['value'];
}
$swatch_option_ids = implode(',', $swatch_option_ids );
*/
```

以上是关于markdown Magento 2 - 获取属性选项的主要内容,如果未能解决你的问题,请参考以下文章

markdown Magento 2 - 获取属性选项

markdown Magento 2 - 获取属性选项

markdown Magento 2 - 获取图像路径

markdown Magento 2 - 获取图像路径

markdown Magento - 获取当前产品及其类别

markdown Magento - 获取当前产品及其类别