先贴上解决方案代码:
将以下代码添加到你的网站主题的 function.php 文件中
/* wpseo_fix_title */
if ( ! function_exists( 'myarcadetheme_remove_bp_wpseo_title' ) && function_exists( 'wpseo_auto_load' ) ) { function myarcadetheme_remove_bp_wpseo_title() { if ( ! bp_is_blog_page() ) { $myarcadetheme_front_end = WPSEO_Frontend::get_instance(); remove_filter( 'pre_get_document_title', array( $myarcadetheme_front_end, 'title' ), 15 ); } } add_action( 'init', 'myarcadetheme_remove_bp_wpseo_title' ); }
这是 WordPress SEO 插件的 bug ,困扰了我很长时间,一直都没有可以显示用户名标题。
这样就算是正常了。其它问题只能等官方修复。