Skip to content

Instantly share code, notes, and snippets.

@mikejolley
Created January 11, 2015 22:47
Show Gist options
  • Save mikejolley/4d0f9b82b8d8dc810b8c to your computer and use it in GitHub Desktop.
Save mikejolley/4d0f9b82b8d8dc810b8c to your computer and use it in GitHub Desktop.
Set default category via query string
add_filter( 'submit_job_form_fields', 'custom_submit_job_form_fields' );
function custom_submit_job_form_fields( $fields ) {
if ( isset( $_REQUEST['job_category'] ) ) {
$fields['job']['job_category']['default'] = sanitize_text_field( $_REQUEST['job_category'] );
}
return $fields;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment