Skip to content

Instantly share code, notes, and snippets.

@kraftbj
Created October 6, 2015 22:21
Show Gist options
  • Save kraftbj/3e9d3d8056d2de525fba to your computer and use it in GitHub Desktop.
Save kraftbj/3e9d3d8056d2de525fba to your computer and use it in GitHub Desktop.
Add featured image support in WPJM
<?php //remove in an existing PHP file.
// This helps with Open Graph image tags in Jetpack.
add_action('init', 'wpjm_thumb_support');
function wpjm_thumb_support(){
add_post_type_support('job_listing', 'thumbnail' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment