We can easily hide/disable/delete the title attribute which will automatically comes with some word press plugins. In order to disable title attribute, with css it is not possible, only with j query we can do it. The following code helps us to disable the title attribute on image hover. But the thing is here the following code can disable all the title tags.

We need to specify the image location then it will disable that particular title only.

<script type="text/javascript">
jQuery('document').ready(function($){
$('[title]').removeAttr('title');
});
</script>