Created
December 3, 2018 05:57
-
-
Save yousufansa/3f15efbdb74a64f2bc21c75afd002f89 to your computer and use it in GitHub Desktop.
Jobhunt - Jobs Header Search 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_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