Created
July 14, 2015 16:05
-
-
Save SeanChDavis/e2d12f4b737e33943515 to your computer and use it in GitHub Desktop.
EDD Comments on 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
/* | |
* Adds comment support to the download post type | |
*/ | |
function pw_edd_comments() { | |
add_post_type_support( 'download', 'comments' ); | |
} | |
add_action( 'init', 'pw_edd_comments', 999 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
how that works