Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: No Title of Each Posts and Pages


@mikey3d
Participant

@mikey3d

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

Skip to toolbar