Skip to content

Instantly share code, notes, and snippets.

@davoraltman
Created July 25, 2017 17:24
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davoraltman/d700074b4aa1c1ff35ef40c97b37ffb9 to your computer and use it in GitHub Desktop.
Save davoraltman/d700074b4aa1c1ff35ef40c97b37ffb9 to your computer and use it in GitHub Desktop.
Prefill the company logo field
add_filter('submit_job_form_fields', 'dm_prefill_company_logo');
function dm_prefill_company_logo( $fields ) {
$fields['company']['company_logo']['value'] = 'full_url_to_the_logo';
return $fields;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment