HEX
Server: Apache
System: Linux cpanel.classit.ro 4.18.0-553.144.1.el8_10.x86_64 #1 SMP Tue Jul 14 09:26:58 EDT 2026 x86_64
User: contexpert (1050)
PHP: 7.4.33
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/contexpert/public_html/site/wp-content/themes/vega/parts/frontpage-open1.php
<?php
/**
 * The template part for displaying an open content section for the frontpage (static)
 *
 * @package vega
 */
?>
<?php 
$vega_wp_frontpage_open1 = vega_wp_get_option('vega_wp_frontpage_open1'); 

if($vega_wp_frontpage_open1 == 'Y') { 

$vega_wp_frontpage_open1_heading = vega_wp_get_option('vega_wp_frontpage_open1_heading'); 

global $post; //SiteOrign Page Builder fix
$open_content_page = get_post(vega_wp_get_option('vega_wp_frontpage_open1_content')); 
$post = $open_content_page ;
$vega_wp_frontpage_open1_content = apply_filters( 'the_content', $open_content_page->post_content );

$vega_wp_frontpage_open1_section_id = vega_wp_get_option('vega_wp_frontpage_open1_section_id'); 
?>
<!-- ========== Featured Section ========== -->
<div class="section frontpage-open1" id="<?php echo esc_attr($vega_wp_frontpage_open1_section_id) ?>" <?php vega_wp_section_bg_color('vega_wp_frontpage_open1_bg_color'); ?>>
    <div class="container">
        <h2 class="block-title wow zoomIn"><?php echo esc_html($vega_wp_frontpage_open1_heading) ?></h2>
        <div class="wow fadeIn"><?php echo $vega_wp_frontpage_open1_content; ?></div>
    </div>
</div>
<!-- ========== /Featured Section ========== -->
<?php 
wp_reset_postdata();
} ?>