Last active
August 29, 2015 14:04
-
-
Save SeanChDavis/fc776e650b8b2d93efd8 to your computer and use it in GitHub Desktop.
EDD Add Categories/Tags to [downloads] shortcode in custom function
This file contains hidden or 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 | |
| /* | |
| * Use "download_category" for categories and "download_tag" for tags | |
| */ | |
| function custom_display_download_cats() { | |
| the_terms( $post->ID, 'download_category', '<span class="download-categories-title">Categories:</span> ', ', ', '' ); | |
| } | |
| add_action( 'edd_download_after', 'custom_display_download_cats' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment