Skip to content

Instantly share code, notes, and snippets.

@yousufansa
Created November 30, 2020 10:20
Show Gist options
  • Select an option

  • Save yousufansa/17507742b3fd052509c8efa6087bdc0f to your computer and use it in GitHub Desktop.

Select an option

Save yousufansa/17507742b3fd052509c8efa6087bdc0f to your computer and use it in GitHub Desktop.
Jobhunt - Display Single Job Overview Custom Title
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