2016-04-05 75 views

回答

0

你需要使用一個插件。您可以試試這個: "All in One SEO Pack" 安裝插件並更改存檔設置。

0

如果您使用yoast SEO插件,那麼最簡單的方法是刪除存檔詞。導航 「稱號& metas-> Taxonomies->類別」

發現:

%%term_title%% %%page%% %%sep%% %%sitename%% 

OR

只要將下面的代碼在你的主題:

%%term_title%% Archives %%page%% %%sep%% %%sitename%% 

代之以function.php

function overwrite_wp_title($title, $sep) 
{ 
    // Look for the string " Archives" (note the leading space), 
    // and strip it out of $title: 
    return preg_replace("/ Archives/", "", $title); 
} 
add_filter("wp_title", "overwrite_wp_title", 11, 2);