function xmlsitemap_custom_load in XML sitemap 7.2
Same name and namespace in other branches
- 6.2 xmlsitemap_custom/xmlsitemap_custom.module \xmlsitemap_custom_load()
Menu load callback; load a custom sitemap link from the {xmlsitemap} table.
Parameters
string $id: The sitemap link ID of the custom link to load.
See also
File
- xmlsitemap_custom/
xmlsitemap_custom.module, line 55 - Main file for XML sitemap Custom.
Code
function xmlsitemap_custom_load($id) {
return xmlsitemap_link_load('custom', $id);
}