Changeset 2251

Show
Ignore:
Timestamp:
02/11/05 01:09:34 (4 years ago)
Author:
rboren
Message:

Allow comments feeds for pages. Use new post loop. http://mosquito.wordpress.org/view.php?id=846

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wp-commentsrss2.php

    r2250 r2251  
    1515<?php 
    1616$i = 0; 
    17 if ($posts) { foreach ($posts as $post) { start_wp(); 
     17if (have_posts()) : 
     18  while (have_posts()) : the_post(); 
    1819    if ($i < 1) { 
    1920        $i++; 
    2021?> 
    21     <title><?php if (is_single()) { echo "Comments on: "; the_title_rss(); } else { bloginfo_rss("name"); echo " Comments"; } ?></title> 
     22    <title><?php if (is_single() || is_page()) { echo "Comments on: "; the_title_rss(); } else { bloginfo_rss("name"); echo " Comments"; } ?></title> 
    2223    <link><?php (is_single()) ? permalink_single_rss() : bloginfo_rss("url") ?></link> 
    2324    <description><?php bloginfo_rss("description") ?></description> 
     
    2627 
    2728<?php  
    28       if (is_single()) { 
     29       if (is_single() || is_page()) { 
    2930            $comments = $wpdb->get_results("SELECT comment_ID, comment_author, comment_author_email,  
    3031            comment_author_url, comment_date, comment_content, comment_post_ID,  
     
    6970        } 
    7071    } 
    71 } } 
     72endwhile; endif; 
    7273?> 
    7374</channel>