File: /var/www/ruwebsiteok/wp-content/themes/education-center/front-page.php
<?php
/**
* Front Page
*
* @package Education_Center
*/
$home_sections = array( 'banner-box', 'about', 'course-feature', 'cta', 'featured', 'video', 'blog' );
if ( 'posts' == get_option( 'show_on_front' ) ) { //Show Static Blog Page
include( get_home_template() );
}elseif( $home_sections ){
get_header();
//If any one section are enabled then show custom home page.
foreach( $home_sections as $section ){
get_template_part( 'section/home/' . esc_attr( $section ) );
}
get_footer();
}else {
//If all section are disabled then show respective page template.
include( get_page_template() );
}