我試圖從<title>
頁面中刪除存檔文本。我使用WooCommerce
和Flatsome
主題的Wordpress,但似乎無法在任何設置中找到它。刪除互聯網瀏覽器標題中的存檔文本
它也在Google上顯示爲「archives
」。
例如http://www.makemyornament.com/product-category/pets/dogs/
如果您在Web瀏覽器看看它說:「狗歸檔」。
我試圖從<title>
頁面中刪除存檔文本。我使用WooCommerce
和Flatsome
主題的Wordpress,但似乎無法在任何設置中找到它。刪除互聯網瀏覽器標題中的存檔文本
它也在Google上顯示爲「archives
」。
例如http://www.makemyornament.com/product-category/pets/dogs/
如果您在Web瀏覽器看看它說:「狗歸檔」。
你需要使用一個插件。您可以試試這個: "All in One SEO Pack" 安裝插件並更改存檔設置。
如果您使用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);