wordpress模板META标签主要性战修正办法
<?php if (is_home() || is_archive() || is_tag() ) { //判定页里属性主页、栏目页、标签页等 $description = "BLUEFATE专客,专注于SEO优化推行战收集营销筹谋";//修正为网站低捐述 $keywords = "BLUEFATE,SEO专客,SEO优化,收集推行,收集营销筹谋";//改为网站设置的枢纽词 } elseif (is_single()) //判定能否为内容页 { if ($post->post_excerpt) { $description = $post->post_excerpt; } else { $description = substr(strip_tags($post->post_content),0,220); //截与文排名蛋俣劝220字节做为形貌 } $keywords = ""; $tags = wp_get_post_tags($post->ID); foreach ($tags as $tag ) { $keywords = $keywords . $tag->name . ", "; } } ?> <meta name="keywords" content="<?=trim($keywords)?>" /> //trim函数过滤失落中间的空缺 <meta name="description" content="<?=trim($description)?>" /> |
利用讲具 告发
系遐初
论坛元老
|
沙收
揭晓于 2016-7-6 04:18:31
|
只看该做者
|