Skip to content

Instantly share code, notes, and snippets.

@JeppeSigaard
Created May 23, 2017 09:42
Show Gist options
  • Save JeppeSigaard/20ba54710ffdce725095f1a61388da5e to your computer and use it in GitHub Desktop.
Save JeppeSigaard/20ba54710ffdce725095f1a61388da5e to your computer and use it in GitHub Desktop.
Title tag remover plugin, fast AF
<?php
/* Plugin name: Fjern title tags */
add_filter('wp_get_attachment_image_attributes', function($attr){
unset($attr['title']);
return $attr;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment