Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- if( !function_exists( 'buddyboss_wpseo_fix_title_buddypress' ) ):
- function buddyboss_wpseo_fix_title_buddypress($title) {
- if ( function_exists( 'buddypress') && ( !empty( buddypress()->displayed_user->id ) || !empty( buddypress()->current_component ) ) ) {
- $bp_title_parts = bp_modify_document_title_parts();
- // let's rebuild the title here
- $title = $bp_title_parts['title'] . ' ' . $title;
- }
- return $title;
- }
- add_filter( 'wpseo_title', 'buddyboss_wpseo_fix_title_buddypress' );
- endif;
Add Comment
Please, Sign In to add comment