| Server IP : 216.106.184.20 / Your IP : 216.73.216.234 Web Server : LiteSpeed System : Linux asmodeus.in-hell.com 5.14.0-570.58.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 29 06:24:11 EDT 2025 x86_64 User : sekoaid1 ( 1891) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/sekoaid1/public_html/wp-content/themes/onepress/ |
Upload File : |
<?php
/**
*Template Name: Frontpage
*
* @package OnePress
*/
get_header(); ?>
<div id="content" class="site-content">
<main id="main" class="site-main" role="main">
<?php
do_action( 'onepress_frontpage_before_section_parts' );
if ( ! has_action( 'onepress_frontpage_section_parts' ) ) {
$sections = apply_filters( 'onepress_frontpage_sections_order', array(
'features', 'about', 'services', 'videolightbox', 'gallery', 'counter', 'team', 'news', 'contact'
) );
foreach ( $sections as $section ){
/**
* Load section if active
*
* @since 2.1.1
*/
if ( Onepress_Config::is_section_active( $section ) ) {
onepress_load_section( $section );
}
}
} else {
do_action( 'onepress_frontpage_section_parts' );
}
do_action( 'onepress_frontpage_after_section_parts' );
?>
</main>
</div>
<?php get_footer(); ?>