Post selector parameter

Hi,

I am adding parameters to my element and I am trying to find a way to allow someone to choose a post from a specific post type, this is the kind of thing i’m going for:

"project_selector": {
"type": "select",
"label": "Select Project",
"options": {
  "posts": {
    "post_type": "project"
  }
}

}

This just creates an select element with no options, I’d like to populate it with all the posts from the post type ‘project’

Try with looper provider ; instead, you can use a JSON :wink:

Thanks for the suggestion Richard,

I doubt that will work for me, I probably not given enough detail. What I need is for the user to be able to select up to 6 projects to display. This is kind of what I would like them to see when they are looking at the component:

Screenshot (40)

Thanks