You are here

function xmlsitemap_taxonomy_xmlsitemap_description in XML sitemap 6

Implementation of hook_xmlsitemap_description().

File

xmlsitemap_taxonomy/xmlsitemap_taxonomy.module, line 202
Adds taxonomy terms to the sitemap.

Code

function xmlsitemap_taxonomy_xmlsitemap_description() {
  return '<dt>' . t('XML sitemap taxonomy') . '</dt>' . '<dd>' . t('The module adds <a href="@terms">taxonomy terms</a> (categories) to the sitemap. The term default priority may be changed while adding or editing vocabularies and the term default priority can be overridden while adding or editing terms.', array(
    '@terms' => url('admin/content/taxonomy'),
  )) . '</dd>';
}