Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: replacing page title


John Blackbourn
Participant

@johnbillion

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');

Skip to toolbar