联系站长! 傻子-跸西blog 傻子-跸西微blog
顶部

底部
Feed on
Posts
Comments

Description 和 Keywords 的重要性已经不像以前那么重要了,但是设置正确的 Description 和 Keywords 还是对你的排名有利。

这两天翻了许多人的博客,测试基本都没有问题但是用着用着就发现了许多的bug.这里将改好的确定无错的代码提上去

免得大家找的辛苦

WordPress 在撰写日志的时候,可以给日志添加摘要(excerpt)和标签(tag),我的做法就是,就如给日志添加了摘要就把摘要做为 Description,如果没有设置摘要的话,则截取文章的前 220 个字作为 Description,而标签直接作为 Keywords。代码如下:

<?php
if (is_home()){
$description = “广告诱惑我们,买车子,衣服.于是拼命工作买不需要的东西.”;
$keywords = “广告诱惑我们,买车子,衣服.于是拼命工作买不需要的东西.”;
} elseif (is_single()){
if ($post->post_excerpt) {
$description  = $post->post_excerpt;
} else {
if(preg_match(‘/<p>(.*)<\/p>/iU’,trim(strip_tags($post->post_content,”<p>”)),$result)){
$post_content = $result[‘1’];
} else {
$post_content_r = explode(“\n”,trim(strip_tags($post->post_content)));
$post_content = $post_content_r[‘0′];
}
$description = substr($post_content,0,220);
}

$keywords = “”;
$tags = wp_get_post_tags($post->ID);
foreach ($tags as $tag ) {
$keywords = $keywords . $tag->name . “,”;
}
}
?>
<meta name=”description” content=”<?php echo trim($description); ?>” />
<meta name=”keywords” content=”<?php echo rtrim($keywords,’,’); ?>” />

上面代码请放到 header.php 相应的位置,同样我也只优化了首页和日志页面。

有什么想法,说两句吧