Ответы:
Другой способ для пользовательских атрибутов: мы можем просто получить значение с помощью getCustomAttribute ()
if (null !== $product->getCustomAttribute('your_custom_attribute')) {
echo $product->getCustomAttribute('your_custom_attribute')->getValue();
}
Лучшая практика в magento - это делать через xml.
Чтобы получить стандартный атрибут, вы делаете что-то вроде этого, catalog_product_view.xml
например:
<referenceContainer name="product.info.main">
<block class="Magento\Catalog\Block\Product\View\Description" name="product.info.brand" template="product/view/attribute.phtml" before="-">
<arguments>
<argument name="at_call" xsi:type="string">getBrand</argument>
<argument name="at_code" xsi:type="string">brand</argument>
<argument name="css_class" xsi:type="string">brand</argument>
<argument name="at_label" xsi:type="string">none</argument>
<argument name="add_attribute" xsi:type="string">itemprop="brand"</argument>
</arguments>
</block>
</referenceContainer>
Это получит значение входного атрибута или текстовой области. Если у вас есть выпадающий список, вы должны использовать текстовый тип, поэтому добавьте эту строку в список аргументов:
<argument name="at_type" xsi:type="string">text</argument>
Нет необходимости создавать файлы или писать код php, чтобы получить атрибут. Таким образом, вы будете использовать один и тот же php-код по умолчанию для любого атрибута, и вам придется изменять его только один раз, если это необходимо.
$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$_product = $objectManager->get('Magento\Catalog\Model\Product')->load($product_id);
$_product->getData('attr_code');
Надеюсь, это поможет
Еще один способ в phtml-файлах:
echo $this->helper('Magento\Catalog\Helper\Output')->productAttribute($block->getProduct(), $block->getProduct()->getDescription(), 'description')
как в: vendor/magento/module-catalog/view/frontend/templates/product/view/description.phtml
Создание блока внутри catalog_product_view.xml и добавление внутри любого контейнера, который вы хотите, или создание контейнера вокруг него.
<!-- Get a attribute -->
<block class="Magento\Catalog\Block\Product\View\Description" name="product.attributes.Height" template="product/view/attribute.phtml" before="-">
<arguments>
<argument name="at_call" xsi:type="string">getHeight</argument>
<argument name="at_code" xsi:type="string">height</argument>
<argument name="css_class" xsi:type="string">height</argument>
<argument name="at_label" xsi:type="string">none</argument>
<argument name="add_attribute" xsi:type="string">itemprop="Height"</argument>
</arguments>
</block>