Wordpress添加关键字和描述
修改网页模版头文件 header.php;
<?php
if (is_home())
{
$description = “孤星博客 – Lone Star 专注于 Linux、CentOS、Shell、LAMP”;
$keywords = “孤星,孤星博客,天煞孤星,Lone Star,Linux,CentOS,Shell,LAMP”;
}
elseif (is_single())
{
if ($post->post_excerpt)
{
$description = $post->post_excerpt;
}
else
{
$description = substr(strip_tags($post->post_content),0,220);
}
$keywords = str_replace(” “,”,”,get_post($id)->post_title).”,孤星博客”;
}
?>
<meta name=”keywords” content=”<?=$keywords?>” />
<meta name=”description” content=”<?=$description?>” />