Last active
December 5, 2015 22:12
-
-
Save SeanChDavis/0e207889adf5956b879d to your computer and use it in GitHub Desktop.
EDD Add Featured Image Support for Downloads
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 // DO NOT COPY THIS LINE | |
function sd_edd_featured_image_support() { | |
add_theme_support( 'post-thumbnails', array( 'post', 'page', 'download' ) ); | |
} | |
add_action( 'after_setup_theme', 'sd_edd_featured_image_support' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment