Skip to content

Instantly share code, notes, and snippets.

@yousufansa
Created December 3, 2018 05:57
Show Gist options
  • Save yousufansa/3f15efbdb74a64f2bc21c75afd002f89 to your computer and use it in GitHub Desktop.
Save yousufansa/3f15efbdb74a64f2bc21c75afd002f89 to your computer and use it in GitHub Desktop.
Jobhunt - Jobs Header Search Custom Title
if ( ! function_exists( 'jh_child_job_header_search_block_title_custom_args' ) ) {
function jh_child_job_header_search_block_title_custom_args( $args ) {
$args['section_title'] = esc_html__( 'Your Title', 'jobhunt' );
return $args;
}
}
add_filter( 'jobhunt_job_header_search_block_args', 'jh_child_job_header_search_block_title_custom_args' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment