PluginProbe
WP Attachments / 3.2.4
WP Attachments v3.2.4
6.0.2 6.0.3 trunk 2.0 3 3.0.1 3.0.2 3.0.3 3.1 3.1.1 3.1.2 3.1.3 3.1.4 3.2 3.2.1 3.2.2 3.2.3 3.2.4 3.3 3.4 3.5 3.5.1 3.5.2 3.5.3 3.5.4 All 52 releases
wp-attachments / html / attachmentEditIframe.php

attachmentEditIframe.php in WP Attachments 3.2.4, at html/attachmentEditIframe.php

15 lines 656 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <form action="<?php echo $url; ?>" method="post" style="padding:0 10px 10px" class="media-item">
2 <div class="submit"><input type="submit" class="button-primary" value="<?php _e('Update Media'); ?>" /></div>
3 <input type="hidden" name="action" value="editattachment" />
4 <input type="hidden" name="attachment_id" value="<?php echo $id; ?>" />
5 <?php
6 wp_nonce_field('media-form');
7 wp_original_referer_field(true, 'current');
8
9 echo get_media_item($id, array(
10 'toggle' => false,
11 'show_title' => false
12 ));
13 ?>
14 <div class="submit"><input type="submit" class="button-primary" value="<?php _e('Update Media'); ?>" /></div>
15 </form>