Changeset 53228 for trunk/src/wp-admin/includes/deprecated.php
- Timestamp:
- 04/20/2022 08:11:34 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/deprecated.php
r53216 r53228 1568 1568 _deprecated_function( __FUNCTION__, '5.3.0' ); 1569 1569 } 1570 1571 /** 1572 * Was used to filter input from media_upload_form_handler() and to assign a default 1573 * post_title from the file name if none supplied. 1574 * 1575 * @since 2.5.0 1576 * @deprecated 6.0.0 1577 * 1578 * @param array $post The WP_Post attachment object converted to an array. 1579 * @param array $attachment An array of attachment metadata. 1580 * @return array Attachment post object converted to an array. 1581 */ 1582 function image_attachment_fields_to_save( $post, $attachment ) { 1583 _deprecated_function( __FUNCTION__, '6.0.0' ); 1584 1585 return $post; 1586 }
Note: See TracChangeset
for help on using the changeset viewer.