How To Embed Elementor Template In WordPress Template file

You can use php do shortcode tag in template file of your WordPress theme to embed Elementor Template

Elementor gives you an amazing flexibility to build complete websites and sections. In many cases, while building a website you might want to embed a particular section of Elementor in your template file.

In such cases you can use php do shortcode to embed Elementor template

For e.g.

If you have created an Elementor section with id of “819” which has shortcode

[elementor-template id="819"]

You can use the following shortcode in your template file of your WordPress theme

<?php echo do_shortcode('[elementor-template id="819"]'); ?>

to embed the section of Elementor template that you have created

Similar Posts