Hi Mo,
Please see my short screen record to know how to show the field value on the frontend https://share.getcloudapp.com/nOuoEAmo.
In this case:
- I have two fields text
with ID my_text
, image_advanced
with ID my_image
- Add the helper function to the post template file (you need to find it on your theme templates) to show the field value.
$my_name = rwmb_meta( 'my_name' );
echo $my_name;
$images = rwmb_meta( 'my_image', array( 'size' => 'thumbnail' ) );
foreach ( $images as $image ) {
echo '<a href="', $image['full_url'], '"><img src="', $image['url'], '"></a>';
}
Please see more on the Video tutorial here https://docs.metabox.io/displaying-fields/.
The important key here is you should have a basic knowledge of coding to use all features of Meta Box and its power.
If you are not familiar with or lack knowledge about coding, you can still use other page builders to show the field value through the builder. We have two extensions Meta Box - Elementor Integrator and Meta Box - Beaver Themer Integrator to help you do that job.
https://metabox.io/plugins/mb-elementor-integrator/
https://metabox.io/plugins/meta-box-beaver-themer-integrator/