Skip to content

Instantly share code, notes, and snippets.

@yousufansa
Created October 29, 2018 06:37
Show Gist options
  • Save yousufansa/217a66b980da886bb1a6c55fca6dcf15 to your computer and use it in GitHub Desktop.
Save yousufansa/217a66b980da886bb1a6c55fca6dcf15 to your computer and use it in GitHub Desktop.
Jobhunt - Display Parent Job Categories Block Only
if ( ! function_exists( 'jh_child_change_job_categories_block_args' ) ) {
function jh_child_change_job_categories_block_args( $args ) {
$args['category_args']['parent'] = 0;
return $args;
}
}
add_filter( 'jobhunt_home_v1_job_categories_block_args', 'jh_child_change_job_categories_block_args' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment