空のカウントを非表示にする方法
質問リンク: https://pluginus.net/support/topic/how-to-hide-empty-counts/
ファイルに functions.php 次のコードを追加:
add_filter('woof_get_terms_args', function ($args) {
$args['hide_empty'] = true;
return $args;
});
質問リンク: https://pluginus.net/support/topic/how-to-hide-empty-counts/
ファイルに functions.php 次のコードを追加:
add_filter('woof_get_terms_args', function ($args) {
$args['hide_empty'] = true;
return $args;
});