
ALT, Titles for media atatched images are empty and it is not so good for SEO.
Can you at least add Page/Post title to ALT and Title in images. Better than anything. Artisteer did it well, dont know why you removed it.
If developers can make check if alt, title exist in attachment, and use manual entered Alt, Title it would be good, If not even this change is more than welcome.
functions.php, line 376:
$title = theme_get_array_value($args, 'title', get_the_title());
Lines 384, 392:
the_post_thumbnail($size, array('alt' => $title, 'title' => $title, 'class' => $img_class));
$result = '<img src="' . $img[0] . '" alt="' . $title . '" width="' . $img[1] . '" height="' . $img[2] . '" title="' . $title . '" class="'. $img_class .'" />';
ALT, Titles for media atatched images are empty and it is not so good for SEO.
Can you at least add Page/Post title to ALT and Title in images. Better than anything. Artisteer did it well, dont know why you removed it.
If developers can make check if alt, title exist in attachment, and use manual entered Alt, Title it would be good, If not even this change is more than welcome.
**functions.php, line 376:**
$title = theme_get_array_value($args, 'title', get_the_title());
**Lines 384, 392:**
the_post_thumbnail($size, array('alt' => $title, 'title' => $title, 'class' => $img_class));
$result = '<img src="' . $img[0] . '" alt="' . $title . '" width="' . $img[1] . '" height="' . $img[2] . '" title="' . $title . '" class="'. $img_class .'" />';