Skip to content

Instantly share code, notes, and snippets.

@farnscosnippet
Last active June 8, 2016 17:29
Show Gist options
  • Save farnscosnippet/7328120 to your computer and use it in GitHub Desktop.
Save farnscosnippet/7328120 to your computer and use it in GitHub Desktop.
WORDPRESS: Use Tags as Meta Tags
<meta name="keywords" content="<?php if(is_single()) {
$metatags = get_the_tags($post->ID);
foreach ($metatags as $tagpost) {
$mymetatag = apply_filters('the_tags',$tagpost->name);
$keyword = utf8_decode($mymetatag); // Your filters...
echo $keyword.",";
}
}
?>" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment