Remove page from Sitemap when are setted as noindex #1054
This commit is contained in:
parent
5779635bd4
commit
0cfb161e53
|
@ -62,11 +62,13 @@ class pluginSitemap extends Plugin {
|
||||||
try {
|
try {
|
||||||
// Create the page object from the page key
|
// Create the page object from the page key
|
||||||
$page = new Page($pageKey);
|
$page = new Page($pageKey);
|
||||||
|
if (!$page->noindex() && !$page->noarchive()) {
|
||||||
$xml .= '<url>';
|
$xml .= '<url>';
|
||||||
$xml .= '<loc>'.$page->permalink().'</loc>';
|
$xml .= '<loc>'.$page->permalink().'</loc>';
|
||||||
$xml .= '<lastmod>'.$page->date(SITEMAP_DATE_FORMAT).'</lastmod>';
|
$xml .= '<lastmod>'.$page->date(SITEMAP_DATE_FORMAT).'</lastmod>';
|
||||||
$xml .= '<changefreq>daily</changefreq>';
|
$xml .= '<changefreq>daily</changefreq>';
|
||||||
$xml .= '</url>';
|
$xml .= '</url>';
|
||||||
|
}
|
||||||
} catch (Exception $e) {
|
} catch (Exception $e) {
|
||||||
// Continue
|
// Continue
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue