Ticket #27833: 27833.diff
| File 27833.diff, 857 bytes (added by , 9 years ago) |
|---|
-
src/wp-admin/includes/template.php
275 275 276 276 $title = esc_textarea( trim( $post->post_title ) ); 277 277 278 /** This filter is documented in wp-admin/edit-tag-form.php */279 278 echo ' 280 279 <div class="hidden" id="inline_' . $post->ID . '"> 281 280 <div class="post_title">' . $title . '</div>' . … … 336 335 337 336 if ( post_type_supports( $post->post_type, 'post-formats' ) ) 338 337 echo '<div class="post_format">' . esc_html( get_post_format( $post->ID ) ) . '</div>'; 339 338 339 /** 340 * Add your data in the quick edit view in the Post list table 341 * 342 * @param object $post The post object in the view. 343 */ 344 do_action( 'inline_data', $post ); 345 340 346 echo '</div>'; 341 347 } 342 348