While Frame does provide the Advanced Custom Fields (ACF) plugin, using this feature will require JSON and coding skills.
In Frame, simply creating a field in the backend using ACF doesn't tell the theme where or how to display that data on the page. You have to explicitly "bind" that custom data to a block (like a Paragraph or Image block) in your template.
Currently, WordPress does yet not have a visual "point-and-click" interface for connecting these fields to blocks. To display your ACF data, you will need to utilize the WordPress Block Bindings API manually.
Overview:
Open your Post/Page in the editor.
Add a standard block (e.g., a Paragraph block) where you want the data to appear.
Switch the editor view to Code Editor mode.
You will need to manually add the binding attributes to the block's HTML to tell it to pull data from your specific ACF meta field instead of static text.
Directions for Block Binding:
https://developer.wordpress.org/news/2024/02/introducing-block-bindings-part-1-connecting-custom-fi…
https://developer.wordpress.org/news/2024/03/introducing-block-bindings-part-2-working-with-custom-…
We know this isn't the most "user-friendly" method yet, but it is currently the native way to handle custom data until WordPress releases a visual interface for it.
