[wp-trac] [WordPress Trac] #22642: Media: API to add back the description field in the new media popup

WordPress Trac noreply at wordpress.org
Thu Nov 29 21:33:37 UTC 2012


#22642: Media: API to add back the description field in the new media popup
-------------------------+------------------------------
 Reporter:  batmoo       |       Owner:
     Type:  enhancement  |      Status:  new
 Priority:  normal       |   Milestone:  Awaiting Review
Component:  Media        |     Version:
 Severity:  normal       |  Resolution:
 Keywords:               |
-------------------------+------------------------------

Comment (by nacin):

 With the patch:
 {{{
 add_filter( 'attachment_fields_to_edit', function( $fields, $post ) {
         $fields['post_content'] = array(
                         'label'      => __('Description'),
                         'value'      => $post->post_content,
                         'input'      => 'textarea'
         );
         return $fields;
 }, 10, 2 );
 }}}

-- 
Ticket URL: <http://core.trac.wordpress.org/ticket/22642#comment:1>
WordPress Trac <http://core.trac.wordpress.org/>
WordPress blogging software


More information about the wp-trac mailing list