Du kannst diesen Code in die functions.php einfügen. Das entfernt alle title tags in Bildern und Links:
[PLAIN]
add_action('wp_head', 'your_function_name');
function your_function_name(){
?>
<script>
jQuery(document).ready(function($) {
$('a[title]').each(function() { $(this).removeAttr('title'); });
});
jQuery(document).ready(function($) {
$('img[title]').each(function() { $(this).removeAttr('title'); });
});
</script>
<?php
};
[/PLAIN]