Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: adding meta tags? or SEO option?


_ck_
Participant

@_ck_

Make this into a mini-plugin and it will add the tags as meta on topic pages:

function bb_tweaks_tags_as_meta_keywords() {
global $tags;
if (!empty($tags)) {
$keywords=""; foreach ($tags as $t) {$keywords.=$t->raw_tag.', ';}
echo "n".'<meta NAME="keywords" CONTENT="'.trim($keywords,", ").'">'."n";
}
}
add_action('bb_head', 'bb_tweaks_tags_as_meta_keywords',8);

Skip to toolbar