我正在使用Yoast的Wordpress SEO插件为我的网站生成面包屑。问题是,当谈到BuddyPress页面时,面包屑无法看到成员的个人资料页面。现在它显示"Home > Members"
在配置文件页面上"Home > Members > Whatever the member\'s name is"
.
这是我的意思
多亏了@brasofilo,我才得以得到它。这是我的最终代码
add_filter( \'wpseo_breadcrumb_links\', \'fix_bp_prifile_bc\', 10, 2 );
function fix_bp_prifile_bc( $links ) {
global $bp;
$user_info = bp_get_user_meta( $bp->displayed_user->id, \'nickname\', true );
//check if we are viewing the profile
if($user_info):
$links[] = array( \'url\' =>\'\', \'text\' =>$user_info );
endif;
return $links;
}