$post_type, 'post_status' => $status, 'posts_per_page' => $count, 'offset' => $offset, 's' => $search, ); $query = new \WP_Query( $args ); $posts = $query->get_posts(); array_walk( $posts, function ( &$post ) { $post = array( 'value' => $post->ID, 'label' => $post->post_title, ); } ); wp_send_json_success( $posts ); } }