aşağıdaki kodu fonksşyon dosyasına yapıştır


function resim_title_alt_ekle($content) {
global $post;
$baslik = get_the_title($post->ID);
$ara = '//i';
$degistir = '';
$content = preg_replace( $ara, $degistir, $content );
return $content;
}
add_filter( 'the_content', 'resim_title_alt_ekle' );


Herhangi bir ayar yapmana gerek kalmaz sitedeki tüm resimlere otomatik olarak alt ve title etiketi verir bu kod.