Including a PHP Template File in Divi Builder

Written by Dan Mossop

The Divi PHP Code Module lets you easily add PHP code anywhere in your Divi Builder pages. One of the many things you can do with it is insert existing PHP templates into your layout. Here's an example:

Suppose you have an existing PHP template file called "testimonials-section.php", located in the "templates" folder in your main WordPress installation folder, and that it contains the following template (with a mix of HTML and PHP code):

<blockquote class="testimonial">
	<span class="text">"<?php esc_html_e($text); ?>"</span>
	by
	<span class="author"><?php esc_html_e($name); ?></span>
</blockquote>

You can easily display this template anywhere in your Divi builder layout using the Divi PHP Code module. To do so, simply place the following PHP code in the PHP Code module:

$name = "Dan";
$text = "This is great!";
include(ABSPATH.'templates/testimonials-section.php');

Like so:

Note that the "ABSPATH" constant refers to the location of the main WordPress folder. You may need to modify the path to the file if it is placed elsewhere on your server.

Now the PHP Code module will load and run the template, passing the $name and $text variables to it. The result is that the template will be displayed, with the values filled in, e.g.:

If you like, you can now copy the PHP Code module and pass in different values for the variables in each copy of the module.

Run PHP Code Directly in your Divi Layouts

Unlock endless customization, automation, and dynamic functionality by seamlessly adding PHP code to your Divi pages and posts with the Divi PHP Code Module. Style, preview, and debug your PHP creations directly in the visual builder with robust error handling and enhanced security.

About Dan Mossop

Dan is a Scottish-born web developer, now living in Brisbane with his wife and son. He has been sharing tips and helping users with Divi since 2014. He created Divi Booster, the first Divi plugin, and continues to develop it along with 20+ other Divi plugins. Dan has a PhD in Computer Science, a background in web security and likes a lot of stuff, 

0 Comments

Submit a Comment

Comments are manually moderated and approved at the time they are answered. A preview is shown while pending but may disappear if your are cookies cleared - don't worry though, the comment is still in the queue.

Your email address will not be published. Required fields are marked *.

We may earn a commission when you visit links on our website.