Skip to content

Instantly share code, notes, and snippets.

@yousufansa
Created October 24, 2018 06:50
Show Gist options
  • Save yousufansa/6fb404324be24f34e100b61a863539d6 to your computer and use it in GitHub Desktop.
Save yousufansa/6fb404324be24f34e100b61a863539d6 to your computer and use it in GitHub Desktop.
Jobhunt - Post A Job Team Size Select Placeholder Text
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