Is there a module that lets you set meta tags for all pages or one that sets pages for specific ones? If there isn't, where is a good place to start looking in how to do that? I need to put a pics label on all the web pages for my site and would love to be able to put a Creative Commons header for those nodes that have one.

Comments

bertboerland’s picture

are you searching fot http://drupal.org/project/keywords?

note: last version was 4,2. I just edit the theme, just as easy

But do a diff so you have some lines which you edited in case you use another theme or version.

--

groets



bertb

--
groets
bert boerland

moonfire’s picture

That is what I exactly needed. I had to patch xtemplate to make it work, but that was it. I'm including the basic directions here in case someone else needs it.

In the xtemplate.theme file:

  ,"keywords_meta" => variable_get("keywords_meta", "")

right after "secondary_links".

In the .xtmpl file, I added:

  {keywords_meta}

...to the head tag. Once I got those, it worked perfectly. Thank you again for your help.