Created
October 24, 2018 06:50
-
-
Save yousufansa/6fb404324be24f34e100b61a863539d6 to your computer and use it in GitHub Desktop.
Jobhunt - Post A Job Team Size Select Placeholder 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_submit_job_form_company_fields_team_size_placeholder_text_edit' ) ) { | |
function jh_child_submit_job_form_company_fields_team_size_placeholder_text_edit( $fields ) { | |
$fields['company_team_size']['placeholder'] = esc_html__( 'Your Text', 'jobhunt-child' ); | |
return $fields; | |
} | |
} | |
add_filter( 'jobhunt_submit_job_form_company_fields', 'jh_child_submit_job_form_company_fields_team_size_placeholder_text_edit' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment