firoze

To create a simple download system in wordpress

Dec 25th, 2015
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. // To create a simple download system in wordpress
  2.  
  3. $id = get_the_id();
  4. $url = get_template_directory_uri();
  5. echo "<a href='$url/$id.zip' download>download from here</a>";
Add Comment
Please, Sign In to add comment