Skip to content

Instantly share code, notes, and snippets.

@yousufansa
Created December 18, 2018 15:25
Show Gist options
  • Save yousufansa/20b761a2917301c99facb959a6722b72 to your computer and use it in GitHub Desktop.
Save yousufansa/20b761a2917301c99facb959a6722b72 to your computer and use it in GitHub Desktop.
Jobhunt - Remove Related Jobs in Single Job Page
if ( ! function_exists( 'jh_child_remove_single_job_listing_related_jobs' ) ) {
function jh_child_remove_single_job_listing_related_jobs() {
remove_action( 'single_job_listing', 'jobhunt_single_job_listing_related_jobs', 40 );
}
}
add_action( 'init', 'jh_child_remove_single_job_listing_related_jobs' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment