You are here

function xmlsitemap_node_xmlsitemap_description in XML sitemap 5.2

Same name and namespace in other branches
  1. 6 xmlsitemap_node/xmlsitemap_node.module \xmlsitemap_node_xmlsitemap_description()

Implementation of hook_xmlsitemap_description().

File

xmlsitemap_node/xmlsitemap_node.module, line 246
Adds nodes to the sitemap.

Code

function xmlsitemap_node_xmlsitemap_description() {
  return '<dt>' . t('XML sitemap node') . '</dt>' . '<dd>' . t('It adds nodes to the sitemap. The default priority of a node is determined by a combination of its <a href="@content">content type</a> priority, whether it appears on the front page of your site, and the number of comments it has received. You can override the default priority for individual nodes when you add or edit a node.', array(
    '@content' => url('admin/content/types'),
  )) . '</dd>';
}