Title: Replace default image title
Last modified: March 8, 2017

---

# Replace default image title

 *  Resolved [lazyym](https://wordpress.org/support/users/lazyym/)
 * (@lazyym)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/replace-default-image-title/)
 * I would like to display image titles. But I would like them to be a default value,
   something like a watermark, so it appears below the photo when expanded. I find
   this but it does not do this specifically. Any ideas on how to make this work
   for that purpose? [http://wordpress.stackexchange.com/questions/211865/prevent-wordpress-from-adding-image-title-automatically](http://wordpress.stackexchange.com/questions/211865/prevent-wordpress-from-adding-image-title-automatically)

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Thread Starter [lazyym](https://wordpress.org/support/users/lazyym/)
 * (@lazyym)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/replace-default-image-title/#post-8888663)
 * I tried it and it seems to work great!
 * add_filter( ‘wp_insert_attachment_data’, function( $data, $postarr )
    { if( empty(
   $postarr[‘ID’] ) && isset( $postarr[‘post_mime_type’] ) && wp_match_mime_types(‘
   image’, $postarr[‘post_mime_type’] ) ) $data[‘post_title’] = ‘Your custom title
   here’;
 *  return $data;
    }, 10, 2 );
 *  Plugin Author [Archetyped](https://wordpress.org/support/users/archetyped/)
 * (@archetyped)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/replace-default-image-title/#post-8942098)
 * Hi, glad to hear you found a solution that works for your needs!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Replace default image title’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/simple-lightbox.svg)
 * [Simple Lightbox](https://wordpress.org/plugins/simple-lightbox/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/simple-lightbox/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/simple-lightbox/)
 * [Active Topics](https://wordpress.org/support/plugin/simple-lightbox/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/simple-lightbox/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/simple-lightbox/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [Archetyped](https://wordpress.org/support/users/archetyped/)
 * Last activity: [9 years, 2 months ago](https://wordpress.org/support/topic/replace-default-image-title/#post-8942098)
 * Status: resolved