You are here

function xmlsitemap_term_xmlsitemap_description in XML sitemap 5.2

Implementation of hook_xmlsitemap_description().

File

xmlsitemap_term/xmlsitemap_term.module, line 156
Adds taxonomy terms to the sitemap.

Code

function xmlsitemap_term_xmlsitemap_description() {
  return '<dt>' . t('XML sitemap term') . '</dt>' . '<dd>' . t('It adds <a href="@terms">taxonomy terms</a> (categories) to the sitemap. You can change the default priority when you add or edit a vocabulary, and you can override the default priority when you add or edit individual terms.', array(
    '@terms' => url('admin/content/taxonomy'),
  )) . '</dd>';
}