test
Server : Apache System : Linux festive-vaughan.27-254-111-205.plesk.page 4.19.0-14-amd64 #1 SMP Debian 4.19.171-2 (2021-01-30) x86_64 User : acaindustrial ( 10114) PHP Version : 8.2.25 Disable Function : opcache_get_status Directory : /var/www/vhosts/acaindustrial.co.th/httpdocs/wp-content/themes/construction-light/ |
Upload File : |
<?php /** * The main template file * * This is the most generic template file in a WordPress theme * and one of the two required files for a theme (the other being style.css). * It is used to display a page when nothing more specific matches a query. * E.g., it puts together the home page when no home.php file exists. * * @link https://developer.wordpress.org/themes/basics/template-hierarchy/ * * @package Construction Light */ get_header(); /** * Enable Front Page */ do_action( 'construction_light_enable_front_page' ); $enable_front_page = get_theme_mod( 'construction_light_enable_frontpage' ,false); if ($enable_front_page == 1): $construction_light_home_sections = construction_light_homepage_section(); foreach ($construction_light_home_sections as $construction_light_homepage_section) { $construction_light_homepage_section = str_replace('construction_light_', '', $construction_light_homepage_section); $construction_light_homepage_section = str_replace('_section', '', $construction_light_homepage_section); get_template_part( 'section/section', $construction_light_homepage_section ); } endif; get_footer();