1. 程式人生 > >設置WordPress文章關鍵詞自動獲取,文章所屬分類名稱,描述自動獲取文章內容,給文章的圖片自動加上AlT標簽

設置WordPress文章關鍵詞自動獲取,文章所屬分類名稱,描述自動獲取文章內容,給文章的圖片自動加上AlT標簽

是否 字符 emp als all 文件中 ext 結構 lar

最近在優化網站,SEO優化標準:每一篇文章都要有關鍵詞,關鍵詞的個數為3到6個。每一篇文章都要有描述,描述的字數為漢字在70~80之間,在160個字符之間。
每一篇文章的圖片都要有Alt標簽,自動給圖片加上Alt標簽
實現代碼:
1.自動獲取關鍵詞:關鍵詞組成結構為:文章所屬父級分類名稱(category_parent),所屬分類名稱(category),文章標題(title)
把以下代碼寫入functions.php文件中:

//關鍵字
function deel_keywords() {
  global $s, $post;//聲明$post全局變量
  $keywords = ‘‘;
  if ( is_single() ) {
	//if ( get_the_tags( $post->ID ) ) {
	  //foreach ( get_the_tags( $post->ID ) as $tag ) $keywords .= $tag->name . ‘, ‘;
	//}
//如果文章有標簽,關鍵詞為標簽 $category = get_the_category(); $parent = get_cat_name($category[0]->category_parent); //echo $parent;//得到父級分類名稱 foreach ( get_the_category( $post->ID ) as $category ) $keywords .=$parent.‘,‘. $category->cat_name . ‘, ‘.get_the_title(); //關鍵詞為父級分類名稱,分類名稱,文章標題 //下面判斷條件為不同模板 $keywords = substr_replace( $keywords , ‘‘ , -2); }// elseif ( is_home () ) { $keywords = dopt(‘d_keywords‘); // } elseif ( is_tag() ) { $keywords = single_tag_title(‘‘, false); //} elseif ( is_category() ) { $keywords = single_cat_title(‘‘, false); //} elseif ( is_search() ) { $keywords = esc_html( $s, 1 ); // } else { $keywords = trim( wp_title(‘‘, false) ); // } if ( $keywords ) { echo "<meta name=\"keywords\" content=\"$keywords\">\n"; } } //關鍵字加入head頭部代碼 add_action(‘wp_head‘,‘deel_keywords‘);

2.自動獲取文章內容作為描述,少於160個字符  

//網站描述
function deel_description() {
  global $s, $post;
  $description = ‘‘;
 // $blog_name = get_bloginfo(‘name‘);
  if ( is_singular() ) {
	//if( !empty( $post->post_excerpt ) ) {
	//  $text = $post->post_excerpt;
        //此處判斷是否有摘要,有摘要,將其作為描述
	//} else {
	  $text = $post->post_content;
	}
	$description = trim( str_replace( array( "\r\n", "\r", "\n", " ", " "), " ", str_replace( "\"", "‘", strip_tags( $text ) ) ) );
    //以下為各種判斷條件
	//if ( !( $description ) ) $description = $blog_name . "-" . trim( wp_title(‘‘, false) );
 // } elseif ( is_home () )    { $description = dopt(‘d_description‘); // 首頁要自己加
 // } elseif ( is_tag() )      { $description = $blog_name . "‘" . single_tag_title(‘‘, false) . "‘";
//  } elseif ( is_category() ) { $description = trim(strip_tags(category_description()));
//  } elseif ( is_archive() )  { $description = $blog_name . "‘" . trim( wp_title(‘‘, false) ) . "‘";
//  } elseif ( is_search() )   { $description = $blog_name . ": ‘" . esc_html( $s, 1 ) . "‘ 的搜索結果";
 // } else { $description = $blog_name . "‘" . trim( wp_title(‘‘, false) ) . "‘";
 //}
  $description = mb_substr( $description, 0, 80, ‘utf-8‘ );
  echo "<meta name=\"description\" content=\"$description\">\n";
  }
//頁面描述加入頭部head標簽中
add_action(‘wp_head‘,‘deel_description‘);

3.自動給文章的圖片加上ALT屬性 (把以下代碼放到single.php文件中) 

<script type="text/javascript">
			var title = "<?php the_title(); ?>"+‘-走勢分析圖‘;
			$(function(){
				$(‘.article-content img‘).attr(‘alt‘,title);
			})
</script>
//其中.article-content img,要獲取到圖片所在div

以上是自動對文章內容進行SEO優化,針對wp的頁面SEO,建議使用ALL in one pack插件,可以實現自定義編輯。  

  

設置WordPress文章關鍵詞自動獲取,文章所屬分類名稱,描述自動獲取文章內容,給文章的圖片自動加上AlT標簽