从Internet浏览器标头中删除存档文本

时间:2016-04-05 20:44:46

标签: wordpress woocommerce wordpress-theming

我正在尝试从页面的<title>中删除档案文本。我正在使用带有WooCommerceFlatsome主题的Wordpress,但似乎无法在任何地方的设置中找到它。

它也以#34; archives&#34;。

的形式出现在Google上

例如http://www.makemyornament.com/product-category/pets/dogs/

如果您在网络浏览器中查看&#34; Dogs Archive&#34;。

2 个答案:

答案 0 :(得分:1)

如果您使用的是yoast SEO插件,那么最简单的方法就是删除存档字。导航&#34;标题&amp; metas-&GT; Taxonomies-&GT;类别&#34;

查找

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

将其替换为:

%%term_title%% %%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);

答案 1 :(得分:0)

您需要使用插件。你可以尝试这个: "All in One SEO Pack" 安装插件并更改存档设置。