Skip to content

Instantly share code, notes, and snippets.

@yousufansa
Created November 27, 2020 18:30
Show Gist options
  • Select an option

  • Save yousufansa/96f4dc60fd85beabe8dd3fb26d540ea6 to your computer and use it in GitHub Desktop.

Select an option

Save yousufansa/96f4dc60fd85beabe8dd3fb26d540ea6 to your computer and use it in GitHub Desktop.
Jobhunt - Change Related Jobs Title Text
if ( ! function_exists( 'jh_child_modify_single_job_listing_related_jobs_title' ) ) {
function jh_child_modify_single_job_listing_related_jobs_title( $title ) {
return "Your Custom Title";
}
}
add_filter( 'jobhunt_single_job_listing_related_jobs_title', 'jh_child_modify_single_job_listing_related_jobs_title' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment