In my project, backend is Wordpress and frontend is Laravel. I have installed “Advanced Custom Fields” plugin to Wordpress becase I want to make some sections dynamic. In normal wordpress site we are getting ACF fields as follows.
<?php
$title = get_field('title', $id);
?>
<h2> <?php echo $title; ?></h2>
But in a Laravel site, I cannot get Advanced Custom Fields in that manner. Does anyone know a way to get Wordpress backend added Advanced Custom Fields to Laravel frontend?
Thank you.