Forums

Join
bbPress Support ForumsInstallationrss feed for topic first post (topic-post) only ?

Info

Tags

rss feed for topic first post (topic-post) only ?

  1. xxx.com/rss is latest rss posts but how do i get latest rss topics ? without recent topic post.
    i look at rss.php i found this

    case 'all-topics':
    			if ( !$topics = get_latest_topics() )
    				die();
    
    			$posts = array();
    			foreach ($topics as $topic) {
    				$posts[] = bb_get_first_post($topic->topic_id);
    			}
    
    			$title = esc_html( sprintf( __( '%1$s » Recent Topics' ), bb_get_option( 'name' ) ) );
    			$link = bb_get_uri();
    			$link_self = bb_get_topics_rss_link();
    			break;

    so how i get that rss feed ?

    thanks

  2. xxx.com/rss/topics

  3. I was trying and trying every variations but I was using topic not topics!

  4. All the variations, as far as I know, can be extrapolated from rss.php line 5 -> 57. There are very interesting RSS.

  5. thx

  6. You must log in to post.