Skip to content

Instantly share code, notes, and snippets.

@bryceadams
Created May 18, 2015 01:08
Show Gist options
  • Save bryceadams/c4fa8e9948cd79b0d324 to your computer and use it in GitHub Desktop.
Save bryceadams/c4fa8e9948cd79b0d324 to your computer and use it in GitHub Desktop.
add_filter( 'submit_job_form_fields', 'remove_cat_field' );
function remove_cat_field( $fields ) {
unset( $fields['job']['job_category'] );
return $fields;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment