Uses
Uses | Description |
---|---|
wp-includes/l10n.php: __() | Retrieve the translation of $text. |
wp-includes/formatting.php: wp_basename() | i18n friendly version of basename() |
Filters input from media_upload_form_handler() and assigns a default post_title from the file name if none supplied.
Illustrates the use of the ‘attachment_fields_to_save’ filter which can be used to add default values to any field before saving to DB.
(array) (Required) The WP_Post attachment object converted to an array.
(array) (Required) An array of attachment metadata.
(array) Filtered attachment post object.
File: wp-admin/includes/media.php
function image_attachment_fields_to_save( $post, $attachment ) { if ( 'image' === substr( $post['post_mime_type'], 0, 5 ) ) { if ( strlen( trim( $post['post_title'] ) ) == 0 ) { $attachment_url = ( isset( $post['attachment_url'] ) ) ? $post['attachment_url'] : $post['guid']; $post['post_title'] = preg_replace( '/\.\w+$/', '', wp_basename( $attachment_url ) ); $post['errors']['post_title']['errors'][] = __( 'Empty Title filled from filename.' ); } } return $post; }
Version | Description |
---|---|
2.5.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/image_attachment_fields_to_save