Skip to content

Instantly share code, notes, and snippets.

@tripflex
Created August 9, 2021 21:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tripflex/02cf8109e31b166cd81d867cd82a0d0a to your computer and use it in GitHub Desktop.
Save tripflex/02cf8109e31b166cd81d867cd82a0d0a to your computer and use it in GitHub Desktop.
Hide categories/taxonomies not associated with listings from showing in WP Job Manager Search and Filtering
<?php
add_filter( 'search_and_filtering_get_taxonomy_data_options_args', 'smyles_sf_tax_hide_empty' );
function smyles_sf_tax_hide_empty( $args ){
$args['hide_empty'] = true;
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment