Display Advanced Custom Field (ACF) inside Divi Blog Extras Plugin

This is the addition to have an Advanced Custom Field inside the plugin Divi Extra Blogs.

. get_field('place')

The Custom Field is the ‘place’.

Just override the file you want to edit to your child theme and do the changes.

Source file: Divi-Blog-Extras/includes/modules/BlogExtras/layouts/grid_extended.php

Override file (create the directories and paste there the original file to start editing):
../Divi-Child-Theme/divi-blog-extras/layouts/grid_extended.php

// Post Meta.
if ( 'on' === $show_author || 'on' === $show_date || 'on' === $show_comments || 'on' === $show_read_time ) {
	$output .= sprintf(
		'<p class="post-meta">%1$s %2$s %3$s %4$s %5$s %6$s %7$s</p>'  . get_field('place')   ,
        
		(   
...
Scroll to Top