Meta Box
Support › General › Frontend archive listing custom viewResolved
Hello,
I'd like to change the front view of my archive data at https://community.cancoms.com/deals/. For now it only displays the content and the post tittle. I'd like it to display other data, such as an image. Is it possible? How can I do that?
Thank you
Hi,
On the archive template of your theme, you can add the helper function to show other field values. For example:
$value = rwmb_meta( 'field_id', '', $post_id ); echo $value;
Please read more on the documentation https://docs.metabox.io/rwmb-meta/ https://docs.metabox.io/displaying-fields/