我正在网站首页上创建一个产品循环。该网站具有微笑弹性搜索运行。我已经在类别admin中为产品设置了手动排序,并且可以循环浏览产品,但是我无法按位置排序。
<?php foreach ($category as $categoryId): ?>
<?php
$category = $categoryFactory->create()->load($categoryId);
$categoryProducts = $category->getProductCollection()
->addAttributeToSort('position','ASC')
->addAttributeToSelect('*');
?>
<?php foreach ($categoryProducts as $product): ?>
// do something with the products
<?php endforeach ?>