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’

