PDA

View Full Version : Supply ALT text for IMG tag


ILTK
11-09-2005, 01:28 PM
Having ALT text for images in a thread created with the IMG tag would be great for SEO and also to comply with ADA (Americans with Disabilities Act)

One way this could be done and not require any extra knowledge from users, would be to have a setup part where you specify what to parse out of the image filename ('-' '.jpg' '.gif' '.png' etc..), and then stick what's left after those things are parsed out of the filename into the ALT tag.

Just an idea, I don't know how to code this myself, but I think such a plugin would be welcomed by a lot of sites.

KW802
11-09-2005, 05:36 PM
ILTK,

Hopefully somebody can convert this to a plugin but if you want a 'hack' method..... :)

In you /forums/includes/class_bbcode.php file look around line 1827 for:return '<img src="' . $link . '" border="0" alt="" />';... and replace it with:$link_file = $link;
$link_bits = split('/',$link_file);
if(is_array($link_bits)) $link_file = $link_bits[count($link_bits)-1];
$link_bits = split('\.',$link_file);
$link_desc = str_replace('_', ' ', $link_bits[0]);
return '<img src="' . $link . '" border="0" alt="' . $link_desc . '" />';
What that will do is take something like...http://www.coolscifi.com/forums/images/cinvin_steelrubber/misc/coolscifi_logo.jpg... and give it an ALT tag of "coolscifi logo" (the "_" is being replaced converted to a space). :)

Kila_Bite
11-12-2005, 12:11 PM
Good idea and thanks for the code KW802, however i'm still unclear where the alt tag would sit and what format to put it in. Where do you put the tag? Like you do in normal html after the url but before the /img? And if so, do you use the same syntax as HTML, so alt="text".

Thanks.

ILTK
11-12-2005, 02:32 PM
Thanks a lot KW802, that is perfect :)

@Killa_bite, just name the image using underscores for spaces and this code will take care of the rest, you don't have to specify the alt text.

For example:

keyword1_keyword2.jpg

Would make it insert alt="keyword1 keyword2" for you.

KW802
11-12-2005, 03:43 PM
Thanks a lot KW802, that is perfect :)No problem. :)

kofoid
05-26-2006, 04:31 PM
Is there a way to do this for your logo graphic?

Kirk Y
05-26-2006, 04:46 PM
Well, for your logo graphic you'd just manually put in alt="", wouldn't you? It's not dynamic, unless you've made it that way.

greatwallforum
12-02-2008, 01:24 PM
Many images have names with no SEO or ADA value, such as IMG_1234.jpg.

How can I use the thread title or the forum name instead of the image filename?