How to remove/hide image title from WordPress media images on hover
-
Hi, Trying to hide image title attribute from appearing when hovering over an image in my store. I have added the following code to my functions.php using the Code Snippets plugin, which I use for a number of things just fine, yet the title attribute still appears.
What am I doing wrong and what will work for this?
TIA
// Title Removal from WordPress image add_filter( 'wp_get_attachment_image_attributes', 'remove_image_text'); function remove_image_text( $attr ) { unset($attr['title']); return $attr; }
Themify Shoppe, WP v6.0.3
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘How to remove/hide image title from WordPress media images on hover’ is closed to new replies.