Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

We've moved the forum!

Please use forum.silverstripe.org for any new questions (announcement).
The forum archive will stick around, but will be read only.

You can also use our Slack channel or StackOverflow to ask for help.
Check out our community overview for more options to contribute.

General Questions /

General questions about getting started with SilverStripe that don't fit in any of the categories above.

Moderators: martimiz, Sean, Ed, biapar, Willr, Ingo, swaiba

help with funcition OrderedChildren


Go to End


2 Posts   790 Views

Avatar
Joserf

Community Member, 1 Post

10 May 2011 at 4:26am

I have the following function

function OrderedChildren() {
$oc = $this->Children();
$oc->sort('Date DESC');

as I can do to show me only three childrenpages?? and not all children

Avatar
(deleted)

Community Member, 473 Posts

10 May 2011 at 7:53am

$oc->getRange(0, 3);