I've got a site that is using GeneratePress/GenerateBlocks, which would be the best way to display current user meta fields?
My initial thinking was a View, but it could make things a bit complex for the client, since the fields they want to display are within a Page/Block layout.
Then, I remembered that there's a Shortcode feature however I'm not entirely sure how to display a single field.
What I've done is create a Field Group ('User Profile Fields', that has a post ID of 356) to be used on the location "User". Inside is a Text field that has the ID of 'phone_field'.
So I thought to place the shortcode in the Page editor/Gutenberg-default WP editor like this:
[rwmb_meta id="phone_field"]
which didn't work. Reading the documentation, it would help to add the object_id so [rwmb_meta id="phone_field" object_id="356"]
but that didn't work either.
Am I using the shortcode settings wrong? Are there any better ways to display User Meta fields?