MarieComet / mc-acf-flexible-template

WordPress plugin makes it possible to save the ACF flexible content fields as templates
71 stars 20 forks source link

Import/Display Template via PHP #22

Open see8ch opened 3 years ago

see8ch commented 3 years ago

Hi, is there an easy way to display a saved template through PHP like echo mc_acf_import_template($templateID)?

MarieComet commented 3 years ago

Hi,

Flexibles templates are native Custom Post Types, and flexible data is stored as native post meta, as serialized values. So i guess, you can display these values using get_post_meta( '_flex_layout_data', $template_id );