我正在使用 Yoast Seo 插件在我的标题下显示面包屑。
我已将默认author
网址更改为about/team
,方法是将以下代码放在 functions.php 中。
add_action('init','change_author_permalinks');
function change_author_permalinks()
{
global $wp_rewrite;
$wp_rewrite->author_base = '/about/team';
$wp_rewrite->author_structure = '/' . $wp_rewrite->author_base. '/%author%';
}
所以mysite.com/author/author name
将是mysite.com/about/team/author name
。
当有人访问mysite.com/about/team/authorname
时,我希望面包屑是这样的:
作者姓名«خانه»دربارهما»اعضا
但它显示了存档的路径:
作者姓名خانه»بایگانی
有没有办法手动覆盖?
文: