3

我第一次使用(wordpress)woocommerce。

我正在尝试以树形显示所有产品类别及其各自的子类别,但我似乎无法按照我在后端使用拖放对它们进行排序的方式对它们进行排序。

WP get_terms() 只允许按 id、name、count、slug 和 none 排序。

我正在使用的代码是:

<?php $catTerms = get_terms('product_cat', array('hide_empty' => 0, 'parent' => 0)); ?>
<ul>
<?php foreach($catTerms as $catTerm) : ?>
<li><a href="<?php _e(get_permalink($catTerm->slug)); ?>"><?php _e($catTerm->name); ?></a></li>
<?php endforeach; ?>
</ul>
4

3 回答 3

0

我仍然没有找到使用代码解决这个问题的方法,所以我将只使用自定义菜单,然后从那里添加产品类别。

于 2013-09-25T06:11:52.720 回答
0

我有一个使用默认 woo 功能且没有额外插件的解决方案。第一: get_woocommerce_term_meta( $sub_category->term_id, 'order', true )

然后获取所有类别并使用此顺序对数组进行排序。

$sortedMenu = array(); // new array
// menu var should be get_categories or taxonomy function return
// I also added order key/val in my category/term array item (along with other terms name, id etc)
// Then I sorted them like bellow
foreach( $menu as $key => $item ) $sortedMenu[$key] = $item['order'];
array_multisort( $sortedMenu, SORT_ASC, $menu );
于 2018-08-28T13:24:12.297 回答
0

I realise this has been a while since this issue has been posted but I have come across the same problem today and fixed it this way

$categories = $this->get_product_categories();
$categories_ordered = [];
foreach ($categories as $category) {
    $meta = get_term_meta($category->term_id);
    $category->position = intval($meta['order'][0]);
    $categories_ordered[] = $category;
}
uasort($categories_ordered, function ($a, $b) {
    return $a->position > $b->position;
});
于 2019-12-10T14:39:57.643 回答