Programmatically add external link page to site map
Permalink
Anyone know how to add an external link page to the site map programmatically? I'm thinking something like,
$data = array('cName' => 'My External Page', 'url'=>'http://www.concrete5.org/', 'cHandle' => 'my-external-page'); $homePage = Page::getByPath('/'); $ct = SomeExternalCollectionType?? $newPage = $homePage->add($ct, $data);
Just found the solution. Need to call addCollectionAliasExternal on the page.