Created
May 18, 2015 01:08
-
-
Save bryceadams/c4fa8e9948cd79b0d324 to your computer and use it in GitHub Desktop.
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
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