Content Picker

Value Type Saved: List<Guid>

The content picker allows you to pick content and display whatever parts of that content on your website

Example of getting value on page

(Content!.GetValue<List<Guid>>("PropertyAliasHere"))

Once you have the media ids, you can then use the QueryContentCommand

var contentItems = await Mediator.Send(new QueryContentCommand
{
  Ids = contentIds
});

Last updated