File: /home/l2pbkn5l6xav/public_html/wp-content/themes/total/templates/home-template.php
<?php
/**
* Template Name: Home Page
*
* @package Total
*/
get_header();
$total_home_sections = total_home_section();
get_template_part( 'template-parts/section', 'slider' );
foreach ($total_home_sections as $total_home_section) {
$total_home_section = str_replace('total_', '', $total_home_section);
$total_home_section = str_replace('_section', '', $total_home_section);
get_template_part( 'template-parts/section', $total_home_section );
}
get_footer();