Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: No Title of Each Posts and Pages


Roger Coathup
Participant

@rogercoathup

The apply filters line at the end of the bp_page_title() / mikey_page_title() function sets the order of the title string, try changing it from:

return apply_filters( ‘bp_page_title’, $blog_title . ‘ | ‘ . esc_attr( $title ), esc_attr( $title ) );

to something like:

return apply_filters( ‘bp_page_title’, esc_attr( $title ) . ‘ | ‘ . $blog_title, esc_attr( $title ) );

Does that do the trick?

Skip to toolbar