Skip to content

Instantly share code, notes, and snippets.

@bryceadams
Created March 22, 2015 01:38
Show Gist options
  • Select an option

  • Save bryceadams/175393ebbf2ecd25fd74 to your computer and use it in GitHub Desktop.

Select an option

Save bryceadams/175393ebbf2ecd25fd74 to your computer and use it in GitHub Desktop.
add_filter( 'submit_job_form_fields', 'wpjm_dont_require_app' );
function wpjm_dont_require_app( $fields ) {
$fields['job']['application']['required'] = false;
return $fields;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment