- This topic has 1 reply, 2 voices, and was last updated 10 months ago by .
-
Topic
-
I want to allow multiple post types to select_advanced field. I have a post type named "plot", but I also want to add another post type in the autosuggest.
See commented below.
array( 'name' => esc_html__( 'Plot', self::$namespace ), 'id' => self::$pin . '_plot_id', 'type' => 'post', 'label_description' => esc_html__( 'Start typing', self::$namespace ), 'post_type' => 'plot', <-----I WANT TO ALLOW MULTIPLE POST TYPES HERE----> 'field_type' => 'select_advanced', 'query_args' => array( 'post_status' => 'publish', 'posts_per_page' => -1, ) )
I couldn't find it in the docs. Is this possible?
Or can I achieve this using another field type?
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- You must be logged in to reply to this topic.