Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Title Tags

Oh, sorry. Yeah. I getchoo. Yes. The filter you want to use is bb_title. The way filters work is that you tell bbpress what you want to filter, bbpress gives you the input and you return the output. In this case:

<?php
/*
Plugin Name: Title Modifier
Author: You
*/
add_filter('bb_title', 'titlemodify');

function titlemodify( $title ) {
//your code that does something to $title;
return $title;
}
?>

Paste this into an empty text file, save it as whateveryouwant.php, edit the code so it actually does something with $title, then upload and activate.

Skip to toolbar