Created
December 14, 2018 15:43
-
-
Save yousufansa/65f4910580cc099083531763ff12ad19 to your computer and use it in GitHub Desktop.
Jobhunt - Submit Form Field Add Description And Change Order
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_edit_custom_job_form_fields' ) ) { | |
function jh_child_edit_custom_job_form_fields( $fields ) { | |
$fields['job']['job_title']['description'] = 'Job Title Description'; | |
$fields['job']['job_category']['description'] = 'Job Category Description'; | |
$fields['job']['application']['description'] = 'Job Application Description'; | |
$fields['job']['job_category']['priority'] = 3; | |
$fields['job']['job_type']['priority'] = 4; | |
return $fields; | |
} | |
} | |
add_filter( 'submit_job_form_fields', 'jh_child_edit_custom_job_form_fields' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment