Guest User

Untitled

a guest
Apr 25th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. function PicList ($eid, $url) {
  2. $i = 1;
  3. $return = "\n".'<div class="entrylinks">Pics:';
  4. while(file_exists($url.'/wp-content/uploads/'.$eid.'/'.$i.'.png')) {
  5. $return = "\n"."\t".'&nbsp;<a href="'.$url.'/wp-content/uploads/'.$eid.'/'.$i.'.png" class="entrylink" onclick="return showPic(this,'.$eid.');">'.$i.'</a>';
  6. $i++;
  7. }
  8. $return = "\n".'</div>';
  9. }
  10.  
  11. print PicList(the_ID(),bloginfo('wpurl'));
Add Comment
Please, Sign In to add comment