Skip to content

Instantly share code, notes, and snippets.

@SeanChDavis
Last active August 29, 2015 14:04
Show Gist options
  • Select an option

  • Save SeanChDavis/fc776e650b8b2d93efd8 to your computer and use it in GitHub Desktop.

Select an option

Save SeanChDavis/fc776e650b8b2d93efd8 to your computer and use it in GitHub Desktop.
EDD Add Categories/Tags to [downloads] shortcode in custom function
<?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