You are here

function xmlsitemap_taxonomy_term_uri in XML sitemap 6.2

Entity URI callback.

1 string reference to 'xmlsitemap_taxonomy_term_uri'
xmlsitemap_taxonomy_xmlsitemap_link_info in xmlsitemap_taxonomy/xmlsitemap_taxonomy.module
Implements hook_xmlsitemap_link_info().

File

xmlsitemap_taxonomy/xmlsitemap_taxonomy.module, line 36

Code

function xmlsitemap_taxonomy_term_uri($term) {
  return array(
    'path' => taxonomy_term_path($term),
  );
}