function xmlsitemap_xmlsitemap_links in XML sitemap 7.2
Same name and namespace in other branches
- 8 xmlsitemap.module \xmlsitemap_xmlsitemap_links()
- 5 xmlsitemap.module \xmlsitemap_xmlsitemap_links()
- 6.2 xmlsitemap.xmlsitemap.inc \xmlsitemap_xmlsitemap_links()
- 2.x xmlsitemap.module \xmlsitemap_xmlsitemap_links()
Implements hook_xmlsitemap_links().
File
- ./
xmlsitemap.xmlsitemap.inc, line 346 - XML sitemap integration functions for xmlsitemap.module.
Code
function xmlsitemap_xmlsitemap_links() {
// Frontpage link.
$links[] = array(
'type' => 'frontpage',
'id' => 0,
'loc' => '',
);
return $links;
}