如何获得一组 Sitecore 同级项?

How to get an array of Sitecore Sibling Items?

我想获取当前项目的所有同级项目的数组,以便我可以在其中显示缩略图。我怎样才能做到这一点?

提前致谢。

您可以获取当前项的父项,然后从当前项中获取除当前项之外的所有子项。

您可以使用以下代码:

Item currentItem = Sitecore.Context.Item;
Item[] siblings = currentItem.Parent.GetChildren().Where(c => c.ID != currentItem.ID).ToArray();