Forum Moderators: rogerd
So what do I do about keywords and meta tags for pages that are automatically generated by users?
Depending on the nature of the site/users you could allow users to describe their content by adding a few tags - you could then use the tags as Keywords.
Fot the META Desc the opening sentence of the users content should be generally useful and unique.
The other option might be to avoid generating any META tags at all but the experts on the list caution againt using formats such as:
<meta name="keywords" content="">
<meta name="description" content="">
due to the risk of duplicate data. They either have to be used as intended or not generated at all.
Instead use the forum code to pull unique descriptions into your meta tags.
Forums already create links out of the titles members use for their posts, just pull that same code into a meta tag.
Example, with phpBB, In the overall_header.tpl file you can add <meta name="description" content="{PAGE_TITLE}" />
the {pagetitle} parameter will pull that posts title into the description tag which isn't perfect but is better than a repeating one.
You can then play with your code a bit and get even better results. content="{page_title} in {forum_name}" etc.
Try it all out, theres no better way to learn.