Created
November 27, 2020 18:30
-
-
Save yousufansa/96f4dc60fd85beabe8dd3fb26d540ea6 to your computer and use it in GitHub Desktop.
Jobhunt - Change Related Jobs Title Text
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_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