views-view-row-rss.tpl.php

  1. 3.x theme/views-view-row-rss.tpl.php
  2. 2.x theme/views-view-row-rss.tpl.php

Default view template to display a item in an RSS feed.

File

theme/views-view-row-rss.tpl.php
View source
  1. <?php
  2. /**
  3. * @file
  4. * Default view template to display a item in an RSS feed.
  5. *
  6. * @ingroup views_templates
  7. */
  8. ?>
  9. <item>
  10. <title><?php print $title; ?></title>
  11. <link><?php print $link; ?></link>
  12. <description><?php print $description; ?></description>
  13. <?php print $item_elements; ?>
  14. </item>

Related topics