PDP页面无法获取当前产品所属分类
有些商品只有一个分类 有些商品会在多个分类下。 所以当前商品获取分类的时候 应该是一个数组
代码如下
get('MagentoFrameworkRegistry')->registry('current_product');
$categories = $product->getCategoryIds(); /*will return category ids array*/
foreach($categories as $category){
$cat = $objectManager->create('MagentoCatalogModelCategory')->load($category);
echo $cat->getName();
}
?>