在magento 2中使用微笑弹性搜索按类别产品循环中的位置进行排序

时间:2018-12-19 07:27:36

标签: php elasticsearch magento2

我正在网站首页上创建一个产品循环。该网站具有微笑弹性搜索运行。我已经在类别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 ?>

0 个答案:

没有答案