Skip to content

Instantly share code, notes, and snippets.

@mikejolley
Created March 10, 2014 23:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikejolley/9476823 to your computer and use it in GitHub Desktop.
Save mikejolley/9476823 to your computer and use it in GitHub Desktop.
WP Job Manager - Remove company fields
add_filter( 'submit_job_form_fields', 'custom_submit_job_form_fields' );
function custom_submit_job_form_fields( $fields ) {
unset( $fields['company'] );
return $fields;
}
@ajmorris
Copy link

Thanks. Sorry about that.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment