Skip to content

Instantly share code, notes, and snippets.

@propertyhive
Created September 8, 2016 14:19
Show Gist options
  • Save propertyhive/a4a1573a018fe3e48b370f043137527d to your computer and use it in GitHub Desktop.
Save propertyhive/a4a1573a018fe3e48b370f043137527d to your computer and use it in GitHub Desktop.
Add featured image support to properties
add_filter( 'propertyhive_register_post_type_property', 'add_featured_image_to_properties' );
function add_featured_image_to_properties($property_post_type_args = array())
{
$property_post_type_args['supports'][] = 'thumbnail';
return $property_post_type_args;
}
add_theme_support( 'post-thumbnails' ); // this line might not be needed, depending on your theme
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment