10up / headstartwp

Build a headless website fast with WordPress, the world’s most popular CMS, and Next.js, the most popular React framework. A free and open source solution by the experts at 10up.
https://headstartwp.10up.com
153 stars 17 forks source link

ACF fields missing in the menu REST payload. #775

Open Knskan3 opened 2 months ago

Knskan3 commented 2 months ago

https://github.com/10up/headstartwp/blob/4744f560bbb914a163e2575997b787fbf71e58b8/wp/headless-wp/includes/classes/API/AppEndpoint.php#L210

The current implementation doesn't include the ACF fields to the menu items.

When using ACF, here's a solution to add the fields.

            $acf_fields = get_fields($menu_item->ID);
            $filtered_menu_item->acf = $acf_fields;