Get Contents of Page in UDT [SOLVED]
Posted: Thu Dec 02, 2010 9:11 am
How do I get the contents of any page in an UDT? Thx
Content management as it is meant to be
https://forum.cmsmadesimple.org/
Code: Select all
global $gCms;
$cntops = $gCms->getContentOperations();
$content = $cntops->LoadContentFromAlias('your-page-alias-here');
echo($content->Show());