Skip to content

Instantly share code, notes, and snippets.

@derpixler
Created September 5, 2011 14:25
Show Gist options
  • Save derpixler/1195107 to your computer and use it in GitHub Desktop.
Save derpixler/1195107 to your computer and use it in GitHub Desktop.
Mach mir eine einfache Seo box
<?
#get_post_meta($post->ID, 'SeoHead', true)
$seo_box = 'H1 Headline: Keyword1, Keyword2, Keyword3, Keyword4, Keyword5';
$meta_values = explode(':',$seo_box);
if(isset($meta_values[1])){
$keywords = explode(',',$meta_values[1]);
$seo_box = '<ul>';
foreach($keywords as $keyword){
$seo_box .= '<li>'.$keyword.'</li>';
}
$seo_box .= '</ul>';
}
echo '<h1>'.$meta_values[0].'</h1>'.$seo_box;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment