Created
July 17, 2017 07:36
-
-
Save shangdev/1a5abb342794fa3df4014ccf7912cac3 to your computer and use it in GitHub Desktop.
woocommerce: get dowloads file!
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 | |
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