2017-07-04 103 views
0

我有一個與photography有關的wordpress網站。首頁只有圖片,沒有任何描述。我添加了Yoast插件。我還添加了元關鍵字和元描述。但是,當谷歌搜索該網站時,不會顯示元描述,而是顯示cookie文本不正確。 爲什麼Google搜索在搜索過程中不顯示添加的元描述。谷歌搜索的網站不顯示元描述

+0

您是否使用谷歌網站管理員工具爲網站編制索引? –

+0

@NhanNguyen是的,我做到了。 –

+0

[The desciption meta標記未在Google有機清單中顯示]的可能重複(https://stackoverflow.com/questions/28573152/the-desciption-meta-tag-is-not-showing-in-a-google -organic-listing) – unor

回答

0

對於

頁yoast meta描述請複製下面功能並在主題function.php文件添加功能。

<?php 

add_filter('wpseo_metadesc', 'sm_builder_content_wpseo_metadesc', 10, 1); 
function sm_builder_content_wpseo_metadesc($desc) { 
// Get $post if you're inside a function 
global $post; 
$post_type = get_post_type($post); 
if ($post_type == "page") { 
    //get_meta_description 
    $desc = get_post_meta($post->ID, '_yoast_wpseo_metadesc', true); 
    if($desc=="") 
    { 
    if (has_excerpt($post->ID)) { 
    // This post has excerpt 
    $desc = $post->post_excerpt; 
    } else { 
    // This post has no excerpt 
    $desc = trim(strip_tags($post->post_content)); 
    $desc = substr($desc,0,155); 
    } 
    } 
} 
return $desc; 
} 

?> 

enter image description here

+0

該網站與照片有關,因此在主頁上沒有任何關於這些圖片的描述。所以我沒有發佈內容或節選在首頁中顯示。 –

+0

請檢查答案的截圖 –

0
  1. 鼠標右鍵點擊你的網站的背景,然後選擇 「查看源代碼」。
  2. 搜索(CONTROL + F):meta name =「description」
  3. 如果您沒有找到任何元描述,這意味着您需要更改模板的header.php文件以添加「wp_head()」功能(自動添加元標籤)。
  4. 如果你已經正確配置了元描述,你需要告訴Google重新編制你的網站。
  5. 告訴Google重新編制您的網站的簡短方法。轉到以下網址並提交您的網站:https://www.google.com/webmasters/tools/submit-url?continue=/addurl(與bing相同:https://www.bing.com/toolbox/submit-site-url)。提交頁面(索引頁)後,搜索引擎將重新爲您的網站編制索引。
  6. 告訴Google重新編制您的網站的長期方法是將您的網站添加到Google網站站長工具:https://www.google.com/webmasters/tools/。轉到「添加屬性」並提交您的網站。您需要通過下載文件並上傳到您的網站或通過設置DNS記錄指向Google來證明您的網站。添加網站後,您可以選擇允許您提交站點地圖。由於您使用的是Yoast,因此您的網站有一個網站地圖(請參閱Yoast設置以查找網站地圖地址)。爲了讓Google重新抓取/重新編制您的網站,請按照下列步驟操作:https://support.google.com/webmasters/answer/6065812?hl=en
  7. 請等待幾小時/天,您將看到您網站的說明將會更改。
0

Google並不總是顯示您設置的元描述和標題。這是直接從Google Search Console幫助頁面獲取的。

Google生成的頁面標題和描述(或「摘錄」)是完全自動化的,並且同時考慮了網頁上顯示的頁面內容和引用。代碼片段和標題的目標是最好地表示和描述每個結果並解釋它與用戶查詢的關係。

https://support.google.com/webmasters/answer/35624?hl=en