Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
MetaTags
I want to add meta tags to the head of my sites. Just for information and little SEO.
Static things like author and revisit-after are no problem:
But i don't know how to handle keywords and description. These are unique for every Discussion (I create a discussion for every project and blog entry).
Shall I add two columns to the discusssion table or save it in a seperate config file, because i've got not soo much projects and blog entries.
Or is there even a better way?
Would be great if anybody can help me.
Static things like author and revisit-after are no problem:
function AddMetaTag($name, $content)
{ global $Head; $Head->AddString('
<meta name="'.$name.'" content="'.$content.'" />'); }
But i don't know how to handle keywords and description. These are unique for every Discussion (I create a discussion for every project and blog entry).
Shall I add two columns to the discusssion table or save it in a seperate config file, because i've got not soo much projects and blog entries.
Or is there even a better way?
Would be great if anybody can help me.
0
This discussion has been closed.