Created
November 30, 2020 10:20
-
-
Save yousufansa/17507742b3fd052509c8efa6087bdc0f to your computer and use it in GitHub Desktop.
Jobhunt - Display Single Job Overview Custom Title
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_custom_single_job_overview_title' ) ) { | |
| function jh_child_custom_single_job_overview_title( $title ) { | |
| return 'Your Overview Title'; //Replace Your Single Job Overview Title with your text | |
| } | |
| } | |
| add_filter( 'jobhunt_single_job_overview_title', 'jh_child_custom_single_job_overview_title' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment