QUITAR TITULOS Y ALT DE IMAGENES

EN EL HEADER:
<script>
jQuery(document).ready(function($) {
$(‘img[title]’).each(function() { $(this).removeAttr(‘title’); });
});
</script>

SNIPPER:
// Title Removal from WordPress image
add_filter( ‘wp_get_attachment_image_attributes’, ‘remove_image_title’);
function remove_image_title( $attr ) {
unset($attr[‘title’]);
return $attr;
}

Entradas relacionadas

3 comentarios

  • Can you be more specific about the content of your article? After reading it, I still have some doubts. Hope you can help me.

  • I am extremely impressed along with your writing talents as smartly as with the structure in your blog. Is this a paid topic or did you modify it yourself? Anyway keep up the excellent quality writing, it is uncommon to peer a nice weblog like this one today!

  • I’ve been exploring for a little for any high-quality articles or weblog posts on this kind of house . Exploring in Yahoo I ultimately stumbled upon this web site. Reading this info So i am satisfied to exhibit that I’ve an incredibly excellent uncanny feeling I came upon just what I needed. I such a lot unquestionably will make certain to don’t forget this site and give it a look on a relentless basis.

Deja tu comentario