Відповіді:
Ще один спосіб для користувацьких атрибутів: ми можемо просто отримати значення за допомогою 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>
Це отримає значення атрибута введення або textarea. Якщо у вас є спадне меню, ви повинні використовувати тип тексту, тому додайте цей рядок у список аргументів:
<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>