'alternate', 'type' => 'application/rss+xml', 'title' => t('RSS - %title', array('%title' => $title)), 'href' => $rss_url, ); drupal_add_link($attributes); drupal_set_title($title); $vid = _station_archive_get_vid(); $tids = _station_archive_get_hour_tids($vid, $hour_string); $result = taxonomy_select_nodes($tids, 'or', 0, FALSE); while ($node = db_fetch_object($result)) { $output .= node_view(node_load($node), 1); } $output .= theme('feed_icon', $rss_url); return $output; } function station_archive_view_hours_rss($hour_string) { $title = t('Shows on...'); $desc = t('Description of shows...'); $vid = _station_archive_get_vid(); $tids = _station_archive_get_hour_tids($vid, $hour_string); $result = taxonomy_select_nodes($tids, 'or', 'all', FALSE); $channel['title'] = $title; $channel['description'] = $desc; return node_feed($result, $channel); }