Created
December 18, 2018 15:25
-
-
Save yousufansa/20b761a2917301c99facb959a6722b72 to your computer and use it in GitHub Desktop.
Jobhunt - Remove Related Jobs in Single Job Page
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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