Files
gkachele-saas/wp-content/themes/abiz/pagebuilder.php
2026-01-17 11:40:17 +01:00

28 lines
584 B
PHP

<?php
/**
*
* Template Name: Builder Page
*
* This is the template that displays all pages by default.
* Please note that this is the WordPress construct of pages
* and that other 'pages' on your WordPress site may use a
* different template.
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package Abiz
*/
get_header();
?>
<section id="page-builder" class="st-py-default theme-builder">
<div class="container">
<?php
while ( have_posts() ) :
the_post();
the_content();
endwhile;
?>
</div>
</section>
<?php
get_footer();