首页 > CMS建站 > Wordpress > 正文

WordPress的文章自动添加关键词及关键词的SEO优化

2021-12-03 12:15:34
字体:
来源:转载
供稿:网友

这篇文章主要介绍了给WordPress的文章添加关键词及关键词的SEO优化方法,突出关键词在搜寻结果中的作用,需要的朋友可以参考下。

网站的关键字及网页描述关系网站对搜索引擎的友好程度,如果自己手动加显然太折腾了,那如何让wordpress博客自动为每篇文章自动关键字及网页描述,每篇文章的内容不同,我们该如何让wordpress自动添加文章描述和关键词呢?下面就让我们来看看如何给wordpress自动添加文章描述和关键词。

在你主题的functions.php文件添加以下代码,各个代码的功能解析如下:

  1. add_action ( 'wp_head''wp_keywords' ); // 添加关键字 
  2. add_action ( 'wp_head''wp_description' ); // 添加页面描述 
  3.    
  4. function wp_keywords() { 
  5.  global $s$post
  6.  $keywords = ''
  7.  if (is_single ()) { //如果是文章页,关键词则是:标签+分类ID 
  8.  if (get_the_tags ( $post->ID )) { 
  9.   foreach ( get_the_tags ( $post->ID ) as $tag ) 
  10.   $keywords .= $tag->name . ', '
  11.  } 
  12.  foreach ( get_the_category ( $post->ID ) as $category ) 
  13.   $keywords .= $category->cat_name . ', '
  14.  $keywords = substr_replace ( $keywords'', - 2 ); 
  15.  } elseif (is_home ()) { 
  16.  $keywords = '我是主页关键词'//主页关键词设置 
  17.  } elseif (is_tag ()) { //标签页关键词设置 
  18.  $keywords = single_tag_title ( '', false ); 
  19.  } elseif (is_category ()) {//分类页关键词设置 
  20.  $keywords = single_cat_title ( '', false ); 
  21.  } elseif (is_search ()) {//搜索页关键词设置 
  22.  $keywords = esc_html ( $s, 1 ); 
  23.  } else {//默认页关键词设置 
  24.  $keywords = trim ( wp_title ( '', false ) ); 
  25.  } 
  26.  if ($keywords) { //输出关键词 
  27.  echo "<meta name=/"keywords/" content=/"$keywords/" />/n"
  28.  } 
  29.  
  30. function wp_description() { 
  31.  global $s$post
  32.  $description = ''
  33.  $blog_name = get_bloginfo ( 'name' ); 
  34.  if (is_singular ()) { //文章页如果存在描述字段,则显示描述,否则截取文章内容 
  35.  if (! emptyempty ( $post->post_excerpt )) { 
  36.   $text = $post->post_excerpt; 
  37.  } else { 
  38.   $text = $post->post_content; 
  39.  } 
  40.  $description = trim ( str_replace ( array ( 
  41.   "/r/n"
  42.   "/r"
  43.   "/n"
  44.   " "
  45.   " " 
  46.  ), " "str_replace ( "/"""'"strip_tags ( $text ) ) ) ); 
  47.  if (! ($description)) 
  48.   $description = $blog_name . "-" . trim ( wp_title ( '', false ) ); 
  49.  } elseif (is_home ()) {//首页显示描述设置 
  50.  $description = $blog_name . "-" . get_bloginfo ( 'description' ) .'首页要显示的描述'// 首頁要自己加 
  51.  } elseif (is_tag ()) {//标签页显示描述设置 
  52.  $description = $blog_name . "有关 '" . single_tag_title ( '', false ) . "' 的文章"; 
  53.  } elseif (is_category ()) {//分类页显示描述设置 
  54.  $description = $blog_name . "有关 '" . single_cat_title ( '', false ) . "' 的文章"; 
  55.  } elseif (is_archive ()) {//文档页显示描述设置 
  56.  $description = $blog_name . "在: '" . trim ( wp_title ( '', false ) ) . "' 的文章"; 
  57.  } elseif (is_search ()) {//搜索页显示描述设置 
  58.  $description = $blog_name . ": '" . esc_html ( $s, 1 ) . "' 的搜索結果"
  59.  } else {//默认其他页显示描述设置 
  60.  $description = $blog_name . "有关 '" . trim ( wp_title ( '', false ) ) . "' 的文章"; 
  61.  } 
  62.  //输出描述 
  63.  $description = mb_substr ( $description, 0, 220, 'utf-8' ) . '..'
  64.  echo "<meta name=/"description/" content=/"$description/" />/n"

突出关键字在搜寻结果:

  1. function wps_highlight_results($text){ 
  2. if(is_search()){ 
  3. $sr = get_query_var('s'); 
  4. $keys = explode(" ",$sr); 
  5. $text = preg_replace('/('.implode('|'$keys) .')/iu''<strong>'.$sr.'</strong>'$text); 
  6. return $text
  7. add_filter('the_excerpt''wps_highlight_results'); 
  8. add_filter('the_title''wps_highlight_results'); 

使用此代码段突出显示搜索词在你的博客搜索结果the_excerpt和the_title。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表