Skip to content

Instantly share code, notes, and snippets.

@mikejolley
Created April 10, 2015 21:13
Show Gist options
  • Save mikejolley/839ed3b02df58f7fce2d to your computer and use it in GitHub Desktop.
Save mikejolley/839ed3b02df58f7fce2d to your computer and use it in GitHub Desktop.
add_filter( 'register_post_type_job_listing', 'custom_register_post_type_job_listing' );
function custom_register_post_type_job_listing( $args ) {
$args['support'][] = 'thumbnail';
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment