Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: replacing page title


John Blackbourn
Participant

@johnbillion

Oh hang on, that’s not right either. Use add_filter(). Try this:

function my_title( $title ) {
return 'PHP Scripts Development Forum';
}

add_filter('bb_get_title', 'my_title');

Skip to toolbar