Re: replacing page title
The second parameter in apply_filters() needs to be a function that returns the text to be displayed in the title. Eg:
function my_title( $title ) {
return 'PHP Scripts Development Forum';
}
apply_filters('bb_get_title', 'my_title');