中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

WordPress文章如何自動添加關鍵詞

發布時間:2021-09-02 09:42:36 來源:億速云 閱讀:138 作者:小新 欄目:開發技術

這篇文章將為大家詳細講解有關WordPress文章如何自動添加關鍵詞,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。


在你主題的functions.php文件添加以下代碼,各個代碼的功能解析如下:

add_action ( 'wp_head', 'wp_keywords' ); // 添加關鍵字
add_action ( 'wp_head', 'wp_description' ); // 添加頁面描述
 
function wp_keywords() {
 global $s, $post;
 $keywords = '';
 if (is_single ()) { //如果是文章頁,關鍵詞則是:標簽+分類ID
 if (get_the_tags ( $post->ID )) {
  foreach ( get_the_tags ( $post->ID ) as $tag )
  $keywords .= $tag->name . ', ';
 }
 foreach ( get_the_category ( $post->ID ) as $category )
  $keywords .= $category->cat_name . ', ';
 $keywords = substr_replace ( $keywords, '', - 2 );
 } elseif (is_home ()) {
 $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";
 }
}

function wp_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 = $blog_name . "-" . get_bloginfo ( 'description' ) .'首頁要顯示的描述'; // 首頁要自己加
 } elseif (is_tag ()) {//標簽頁顯示描述設置
 $description = $blog_name . "有關 '" . single_tag_title ( '', false ) . "' 的文章";
 } elseif (is_category ()) {//分類頁顯示描述設置
 $description = $blog_name . "有關 '" . single_cat_title ( '', false ) . "' 的文章";
 } 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, 220, 'utf-8' ) . '..';
 echo "<meta name=\"description\" content=\"$description\" />\n";
}

突出關鍵字在搜尋結果:

function wps_highlight_results($text){
if(is_search()){
$sr = get_query_var('s');
$keys = explode(" ",$sr);
$text = preg_replace('/('.implode('|', $keys) .')/iu', '<strong>'.$sr.'</strong>', $text);
}
return $text;
}
add_filter('the_excerpt', 'wps_highlight_results');
add_filter('the_title', 'wps_highlight_results');

使用此代碼段突出顯示搜索詞在你的博客搜索結果the_excerpt和the_title。

關于“WordPress文章如何自動添加關鍵詞”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

彭州市| 普宁市| 辽源市| 隆德县| 策勒县| 招远市| 海林市| 龙里县| 灯塔市| 红桥区| 巴东县| 嘉义县| 噶尔县| 石阡县| 安溪县| 杭锦后旗| 阜新| 建宁县| 平顶山市| 黄大仙区| 溧水县| 来安县| 宜丰县| 清流县| 开化县| 静乐县| 新晃| 镇安县| 中宁县| 西充县| 乐陵市| 乾安县| 新兴县| 寻甸| 潢川县| 临猗县| 耒阳市| 卓资县| 麻城市| 和田县| 军事|