Skip to:
Content
Pages
Categories
Search
Top
Bottom

How to customize bbpress titles ?

  • Hi all ,

    i recently installed BBPress , and oh man , its very easy to use and the installation taked only 3 minutes , but its the customization that was very interesting , about this , how to customize titles ?

    I dont want the whole title like this : POST_TITLE > SITE_TITLE , is that possible ?

    Thanks .

Viewing 4 replies - 1 through 4 (of 4 total)
  • There isn’t currently a filter on the title, so there’s no quick answer that I can see, however:

    You could copy bb-templatesheader.php to my-templatesheader.php (if you don’t have a copy of it already), then change its call to bb_title(); to another function, which you could write in a plugin, stealing code from the bb_get_title() function in template-functions.php.

    Something like: my-title-plugin.php

    <?php

    // edit this so it returns whatever you want

    function my_title() {

    global $topic, $forum, $static_title, $tag, $user;

    $title = '';

    if ( is_topic() )

    $title = get_topic_title(). ' &laquo; ';

    if ( is_forum() )

    $title = get_forum_name() . ' &laquo; ';

    if ( is_tag() )

    $title = wp_specialchars( get_tag_name() ). ' &laquo; Tags &laquo; ';

    if ( is_bb_profile() )

    $title = get_user_name( $user->ID ) . ' &laquo; ';

    if ( !empty($static_title) )

    $title = $static_title . ' &laquo; ';

    $title .= bb_get_option('name');

    return $title;

    }

    ?>

    There will be a filter for the title in the next release. Thanks!

    Thanks for your help !


    Arlo
    Member

    @arlo

    I’m on latest trac…is this filter present? I’m not seeing it anywhere.

Viewing 4 replies - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.
Skip to toolbar