Skip to:
Content
Pages
Categories
Search
Top
Bottom

Forum names in RSS recent posts

  • @davidgv

    Participant

    How can i put the name of the forum, for each post, in the RSS feed “recent posts” ?

Viewing 2 replies - 1 through 2 (of 2 total)
  • @kawauso

    Member

    Easiest way would be to add <?php $post_forum = bb_get_forum( $bb_post->forum_id ); echo $post_forum->forum_name; ?> inside your theme’s rss2.php, after it says <?php foreach ($posts as $bb_post) : ?>, possibly inside the <title> part.

    i.e.

    <title><?php post_author(); ?> <?php _e('on')?> "<?php topic_title( $bb_post->topic_id ); ?>" <?php _e('in')?> "<?php $post_forum = bb_get_forum( $bb_post->forum_id ); echo $post_forum->forum_name; ?>"</title>

    @davidgv

    Participant

    It’s perfect !! Thank you.

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