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, 

2 Comments

  1. Hi Dan,

    Can a PHP template also be included in the DIVI Theme Builder in this way? As you know, the DIVI theme builder will override the PHP template that WordPress would use for a Custom Post Type. I'm looking for a simple way to keep using the front-end rendering that this PHP template would provide, without completely reconstructing it in the DIVI theme builder.

    Thank you in advance for your answer!

    Best,
    Ilse

    Reply
    • Hi Ilse, the PHP code module will work in the theme builder as well, so you should be able to include templates in the same way there – the example shown in the post should, I believe, work in the theme builder too. Please feel free to give me a shout if you have any questions while setting it up. Thanks!

      Reply

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.

Latest From Divi Booster

Enable Automatic Looping for YouTube Videos in the Divi Video Module

Enabling automatic looping for YouTube videos in your Divi video module ensures that content plays seamlessly and continuously without interruption. This feature can enhance user engagement, highlight key information, or create dynamic visual effects on your website....

Hide Video Controls in Divi Video Module

Disabling YouTube video controls in the Divi Video Module helps create a seamless, distraction-free viewing experience for your site visitors. This approach is useful when you want full control over how your video content appears and is interacted with on the page, or...

Mute YouTube Videos by Default in the Divi Video Module

In the Divi Video Module, starting your YouTube videos muted by default can create a more user-friendly browsing experience on your webpage. It is particularly beneficial for reducing distractions, enhancing visitor engagement, and providing a seamless content preview...

Autoplay Videos in Divi Video Module

Enabling videos in your Divi video module to start playing automatically can enhance both the site's design and user engagement. To ensure full compatibility with browser requirements, such as Chrome's autoplay policy, it's often necessary to start your videos muted...

How to Add the Post Status in Divi's Dynamic Content

Divi's Dynamic Content feature is great for enhancing your post/page templates with post-specific information. While Divi includes an option to show information such as the Post Created Date using Dynamic Content, there is no equivalent option for the Post Status....

Random Divi Posts