Re: No Title of Each Posts and Pages
Thank you for stick with me. Roger.
It works! OK, now I’m trying to reverse the title tag after go to see the pages.
In bp-custom.php, the code:
if ( is_single() ) {
$title = __( ‘Blog | ‘ . $post->post_title, ‘buddypress’ );
Change to:
if ( is_single() ) {
$title = __( $post->post_title, ‘buddypress’ );
This result I get for title tag: My blog | Hello world!
I want to reverse the title like: Hello world! | My blog
How could I do that?
Thanks, Mikey3D