Created
October 6, 2015 22:21
-
-
Save kraftbj/3e9d3d8056d2de525fba to your computer and use it in GitHub Desktop.
Add featured image support in WPJM
This file contains 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
<?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