Skip to content

Instantly share code, notes, and snippets.

@shangdev
Created July 17, 2017 07:36
Show Gist options
  • Save shangdev/1a5abb342794fa3df4014ccf7912cac3 to your computer and use it in GitHub Desktop.
Save shangdev/1a5abb342794fa3df4014ccf7912cac3 to your computer and use it in GitHub Desktop.
woocommerce: get dowloads file!
<?php
global $product;
$downloads = $product->get_downloads();
foreach( $downloads as $download ) :
?>
<a href="<?php echo $download['file']; ?>"><?php echo $download['name']; ?></a>
<?php endforeach; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment