Clone a page

This script will clone a page and place it under a different parent page.

number source = getPage("CTR", "Clone a page"); //page to clone
number newParent = getPage("CTR", "Home"); //parent for the cloned page

//clone page and get id, adds "Cloned" to the end of the title
//sample syntax - clonePage(pageId, parentId, title)
 
number clone = clonePage(source, newParent, source.title + " (Cloned)"); 


See Other Recipes

See More Documentation