Advertisement
Guest User

Untitled

a guest
Jun 10th, 2013
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.77 KB | None | 0 0
  1. $args = array(
  2. 'post_type' => 'attachment',
  3. 'numberposts' => null,
  4. 'post_status' => null,
  5. 'post_parent' => $post->ID
  6. );
  7. $attachments = get_posts($args);
  8. if ($attachments) {
  9. echo '<ul class="attach_list">';
  10. foreach ($attachments as $attachment) {
  11. echo'<li class="attchmt">';
  12. echo'<a class="remAttachment" href="#">Remove</a>';
  13. echo'<input type="hidden" id="att_remove" name="att_remove[]" value=" '. $attachment->ID .' " />';
  14. echo'<input type="hidden" name="nonce" id="nonce" value=" '. wp_create_nonce( 'delete_attachment' ) .' " />';
  15. echo '<span>';
  16. echo apply_filters('the_title', '&nbsp;'.$attachment->post_title);
  17. echo '</span>'. $attachment->ID .'<a href="#" id="edit-track-tb"> Edit Track Info</a></li>';
  18. echo '<div id="my-content-id" style="display:none;">';
  19. echo '<div id="holla">';
  20. echo '<h2>Update Track Info'. $attachment->ID .'</h2>';
  21. echo '<label>Artist</label></br>';
  22. echo '<input class="widefat" type="text" value="'. get_post_meta($attachment->ID, media_artist', true) .'"/></br>';
  23. echo '<label>Itunes URL</label></br>';
  24. echo '<input class="widefat" type="text" value="'. get_post_meta($attachment->ID, 'itunes_url', true) .'"/></br>';
  25. echo '<label>Amazon URL</label></br>';
  26. echo '<input class="widefat" type="text" value="'. get_post_meta($attachment->ID, 'amazon_url', true) .'"/></br>';
  27. echo '<label>Other Buy URL</label></br>';
  28. echo '<input class="widefat" type="text" value="'. get_post_meta($attachment->ID, 'buy_other', true) .'"/></br></br>';
  29. echo '<input type="button" class="button-primary button-large" value="Update Track"/>';
  30. echo' </div></div><a href="#TB_inline?width=600&height=550&inlineId=my-content-id" class="thickbox">View my inline content!</a>';
  31.  
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement