Answer the question
In order to leave comments, you need to log in
A filter that will allow you to remove the "Title" field in the image upload window?
Hello!
Can you please tell me a snippet to remove the "Title" field in the image upload window?
Something like:
function my_images_attr( $attrs, $attachment, $size ) {
if ( isset( $attrs['title'] ) ) {
unset( $attrs['title'] );
return $attrs;
}
}
add_filter( 'wp_get_attachment_image_attributes', 'my_images_attr', 10, 3 );
Answer the question
In order to leave comments, you need to log in
function hide_my_media_title(){
?>
<style type="text/css">
.attachment-details [data-setting="title"] {
display: none;
}
</style>
<?php
}
add_action('admin_head-post.php', 'hide_my_media_title' );
add_action('admin_head-post-new.php', 'hide_my_media_title' );
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question