Search found 1 match

by nehakakar
Fri Jul 14, 2023 11:31 am
Forum: Layout and Design (CSS & HTML)
Topic: How to show list of childs sorted by custom data
Replies: 3
Views: 7891

Re: How to show list of childs sorted by custom data

You can use sort the list of child pages based on the custom system field. Try this.. {php} $children = cmsms()->GetHierarchyOperations()->GetChildren($content->Id()); $groups = []; foreach ($children as $child) { $system = $child->custom_fields['system']; // Replace 'system' with your custom field ...

Go to advanced search