请安装我们的客户端

更新超快的免费小说APP

下载APP
终身免费阅读

添加到主屏幕

请点击,然后点击“添加到主屏幕”

114中文网 www.114zww.com,左岸读书无错无删减全文免费阅读!

    水煮鱼教我这样写:description和keywords的重要性已经不像以前那么重要了,但是设置正确的description和keywords还是对你的排名有利。

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

    <?if(ishome){$description="我爱水煮鱼是一个关注wordpress开源博客平台应用和互联网的it博客。";$keywords="wordpress,博客,互联网,主题,插件";}elseif(issingle){if($post->postexcerpt){$description=$post->postexcerpt;}else{$description=substr(striptags($post->postcontent),0,220);}$keywords="";$tags=wpgetposttags($post->id);foreach($tagsas$tag){$keywords=$keywords。$tag->name。",";}}?><metaname="keywords"content="<?=$keywords?>"/><metaname="description"content="<?=$description?>"/>

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

    我写成这样:

    <?phpif(ishome){?><title><?phpbloginfo(&quot;name&quot;);?><?phpecho(&quot;|&quot;);?><?phpbloginfo(&quot;description&quot;);?></title><metaname="description"content="<?phpbloginfo(&quot;description&quot;);?>"/><metaname="keywords"content="读书,左岸,书库,人生,生活观察,管理,印象,教育,智慧,财富,投资,wordpress"/><?php}?><?phpif(iscategory){?><title><?phpbloginfo(&quot;name&quot;);?><?phpecho(&quot;|&quot;);?><?phpsinglecattitle(&quot;&quot;);?></title><metaname="description"content="<?phpechowptitle(",");?>"/><?php}?><?phpif(isarchive){?><title><?phpbloginfo(&quot;name&quot;);?><?phpecho(&quot;|&quot;);?><?phpwptitle(&quot;&quot;);?><?phpecho(&quot;archives&quot;);?></title><metaname="description"content="<?phpechowptitle(",");?>"/><?php}?><?phpif(issingle){?><title><?php$trimmedtitle=wptitle(&quot;&quot;,false);$trimmedtitle=trim($trimmedtitle);echo$trimmedtitle;?>-<?phpbloginfo(&quot;name&quot;);?></title><metaname="description"content="<?php$trimmeddesc=theexcerptrss(&quot;&quot;,false);$trimmeddesc=trim($trimmeddesc);echo$trimmeddesc;?>"/><metaname="keywords"content="<?php$keywords="";$tags=wpgetposttags($post->id);foreach($tagsas$tag){$keywords=$keywords。$tag->name。",";}echo$keywords;?>"/><?php}?><?phpif(ispage){?><title><?phpbloginfo(&quot;name&quot;);?><?phpecho(&quot;|&quot;);?><?phpwptitle(&quot;&quot;);?></title><metaname="description"content="<?phptheexcerptrss;?>"/><?php}?><!--leavethisforstats-->

请安装我们的客户端

更新超快的免费小说APP

下载APP
终身免费阅读

添加到主屏幕

请点击,然后点击“添加到主屏幕”