Remove a field from the job submission page
add_filter( 'submit_job_form_fields', 'custom_submit_job_form_fields_dm' ); | |
function custom_submit_job_form_fields_dm( $fields ) { | |
// in this example, we remove the job_tags field | |
unset($fields['job']['job_tags']); | |
// And return the modified fields | |
return $fields; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment