Changes between Initial Version and Version 2 of Ticket #22664
- Timestamp:
- 12/01/2012 12:02:23 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #22664 – Description
initial v2 3 3 You can reproduce with the following, make a plugin and drop this in then upload an attachment and click "save". 4 4 5 6 {{{ 5 7 function my_func( $post, $attachment ){ 6 8 print '<pre>'; … … 10 12 } 11 13 add_action('attachment_fields_to_save', 'my_func'); 14 }}} 15 12 16 13 17 14 18 Stable WordPress produces this: 19 20 {{{ 15 21 Array ( 16 22 [menu_order] => 0 … … 21 27 [url] => 22 28 ) 29 }}} 30