taxonomy_rss_item

5 taxonomy.module taxonomy_rss_item($node)
6 taxonomy.module taxonomy_rss_item($node)

Provides category information for RSS feeds.

1 call to taxonomy_rss_item()

File

modules/taxonomy/taxonomy.module, line 1329
Enables the organization of content into categories.

Code

function taxonomy_rss_item($node) {
  $output = array();
  foreach ($node->taxonomy as $term) {
    $output[] = array(
      'key' => 'category', 
      'value' => $term->name, 
      'attributes' => array('domain' => url('taxonomy/term/' . $term->tid, array('absolute' => TRUE))),
    );
  }
  return $output;
}
Login or register to post comments