Forum Replies Created
Viewing 3 posts - 1 through 3 (of 3 total)
-
Author
-
May 2, 2015 at 21:58 in reply to: HTML Tag for Page Titles Seems Broken for Buddypress & bbPress #57074bradhParticipant
Reflect Growth, the following code is an update to your fix that includes a dynamic call…
COPY CODE/* BuddyPress & bbPress: Page Title fix */ add_filter( 'bp_modify_page_title', 'my_page_title', 10); add_filter('bbp_title', 'my_page_title'); function my_page_title( $title) { return $title.' ' .get_bloginfo( 'name', 'display' ); }
May 2, 2015 at 21:52 in reply to: HTML Tag for Page Titles Seems Broken for Buddypress & bbPress #57072bradhParticipantSorry, correction listed below…
COPY CODE/* BuddyPress & bbPress: Page Title fix */ add_filter( 'bp_modify_page_title', 'my_page_title', 10); // Works for BP pages fine :) add_filter('bbp_title', 'my_page_title'); // Doesn't work for BB pages :( function my_page_title( $title) { return $title.' Reflect Growth'; // TODO: Change to dynamic WP func call. }
May 2, 2015 at 21:51 in reply to: HTML Tag for Page Titles Seems Broken for Buddypress & bbPress #57071bradhParticipantReflect Growth, the following code will correct your issue for bbPress pages…
COPY CODE/* BuddyPress & bbPress: Page Title fix */ add_filter( 'bp_modify_page_title', 'my_page_title', 10); // Works for BP pages fine :) add_filter('bb_title', 'my_page_title'); // Doesn't work for BB pages :( function my_page_title( $title) { return $title.' Reflect Growth'; // TODO: Change to dynamic WP func call. }
-
AuthorPosts
Viewing 3 posts - 1 through 3 (of 3 total)