![]() Server : LiteSpeed System : Linux premium84.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : claqxcrl ( 523) PHP Version : 8.1.32 Disable Function : NONE Directory : /home/claqxcrl/marketiza-angola.com/wp-content/themes/the-conference/ |
<?php /** * Front Page * * @package The Conference */ $home_sections = the_conference_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() ); }