You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
329 B
PHTML
16 lines
329 B
PHTML
7 months ago
|
<?php
|
||
|
$layouts = et_theme_builder_get_template_layouts();
|
||
|
?>
|
||
|
<?php get_header(); ?>
|
||
|
|
||
|
<?php
|
||
|
et_theme_builder_frontend_render_body(
|
||
|
$layouts[ ET_THEME_BUILDER_BODY_LAYOUT_POST_TYPE ]['id'],
|
||
|
$layouts[ ET_THEME_BUILDER_BODY_LAYOUT_POST_TYPE ]['enabled'],
|
||
|
$layouts[ ET_THEME_BUILDER_TEMPLATE_POST_TYPE ]
|
||
|
);
|
||
|
?>
|
||
|
|
||
|
<?php
|
||
|
get_footer();
|