Как отключить всплывающий title у картинок в Вордпрессе

Надо добавить в fuctions.php темы следующий код:

HTML
function remove_image_title_attribute( $html, $attachment_id, $attachment ) {
    $html = preg_replace( '/ title="[^"]+"/', '', $html );
    return $html;
}
add_filter( 'wp_get_attachment_image', 'remove_image_title_attribute', 10, 3 );

function remove_link_title_attributes( $content ) {
  $content = preg_replace( '/ title="[^"]*"/i', '', $content );
  return $content;
}
add_filter( 'the_content', 'remove_link_title_attributes', 20 );
Как вам статья?
+1
0
+1
1
+1
0
+1
0
+1
0
+1
0

Рекомендую почитать