10441 Posts in 2220 Topics by 1717 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 1079 Views |
-
exclude page(s) from google sitemap programmatically?

3 June 2010 at 1:14am
Hi, is there a way to exclude a page-class from the sitemap.xml with a line of php code? I know this can be done by hand, but I want a certain page type to not show up at all, without user interference.
-
Re: exclude page(s) from google sitemap programmatically?

4 June 2010 at 7:17pm
Got it:
Templates and pages who do not show up in search (even when search is not implemented on the site) do also not show up in the sitemap.xml. To make this the standard you could add the folowing code to your classes:
static $defaults = array(
"ShowInSearch" => 0
);And you could add this to your getCMSFields()
$fields->removeFieldFromTab("Root.Behaviour","ShowInSearch");
-
Re: exclude page(s) from google sitemap programmatically?

25 September 2010 at 12:41pm
Or if you want the page to stay in search but be removed from sitemap then:
protected function onBeforeWrite() {
$this->Priority = '-1';
parent::onBeforeWrite();
}
| 1079 Views | ||
|
Page:
1
|
Go to Top |

