从列表空值中排除

时间:2017-07-21 14:18:12

标签: wordpress categories

您好我创建了一个函数来在列表中显示WooCommerce主类别的所有子类别,并且不显示没有任何产品的空子类别。

我使用此代码,但我继续在列表上显示子类别为空。哪里错了?

    <ul>
        <?php foreach($term_children as $child) :
                $term = get_term_by( 'id', $child, 'product_cat' );
        ?>
            <li><a href="<?php echo get_term_link( $child, 'product_cat' ) ?>"><?php echo $term->name; ?></a></li>
        <?php // Skip empty terms
if( $child->count <= 0 ) {
    continue;
} ?>   
        <?php endforeach; ?>
        </ul>

0 个答案:

没有答案