如果类别中没有产品,如何从类别下拉列表中删除类别

时间:2021-02-06 18:08:59

标签: php wordpress woocommerce

如果类别中的产品数量为 0,我希望能够在类别下拉菜单(wordpress + woocommerce)中隐藏类别。有人知道怎么做吗?我在下面试过这个:

model.train(dataset_train, dataset_val,
        learning_rate=config.LEARNING_RATE, 
        epochs=100, 
        layers='heads')#You can also use 'all' to train all network.

wp_dropdown_categories('hide_empty=0');

1 个答案:

答案 0 :(得分:0)

wp_dropdown_categories( array|string $args = '' )

enter image description here

wp_dropdown_categories('hide_if_empty=true');
相关问题