wordpress的模版基本上都不会对页面的”关键字”和”描述”做处理,所以我们要自己想办法给每个页面加上这些东西
在head.php文件相关位置添加一下代码:
post_excerpt) {
$description = $post->post_excerpt;
} else {
$description = substr(strip_tags($post->post_content),0,220);
}
$keywords = "";
$tags = wp_get_post_tags($post->ID);
foreach ($tags as $tag ) {
$keywords = $keywords . $tag->name . ", ";
}
}
?>