| Server IP : 77.50.203.18 / Your IP : 192.168.0.10 Web Server : Apache/2.4.62 (CentOS Stream) OpenSSL/3.5.7 mpm-itk/2.4.7-04 PHP/8.4.23 System : Linux web2 5.14.0-722.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Mon Jul 6 09:07:51 UTC 2026 x86_64 User : warsnews.ru ( 1001) PHP Version : 8.4.23 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/ifwar.ru/www/wp-content/plugins/clever-fox/inc/eduvert/sections/ |
Upload File : |
<?php
if ( ! defined( 'ABSPATH' ) ) exit;
if ( ! function_exists( 'cleverfox_eduvert_lite_video' ) ) :
function cleverfox_eduvert_lite_video() {
$eduvert_video_hs = get_theme_mod('video_hs','1');
$eduvert_video_title = get_theme_mod('video_title',__('Live classes','clever-fox'));
$eduvert_video_description= get_theme_mod('video_description',__('high quality Live classes','clever-fox'));
$eduvert_video_link = get_theme_mod('video_link','https://www.youtube.com/embed/cdfMgotGKIM');
if($eduvert_video_hs=='1'):
?>
<section class="section-video wow fadeInUp ptb-80 home1-video" id="home1-video">
<div class="bg11-element"><img src="<?php echo esc_url(get_template_directory_uri()); ?>/assets/images/course/Vector-1.png" alt=""></div>
<div class="bg12-element"><img src="<?php echo esc_url(get_template_directory_uri()); ?>/assets/images/course/Vector.png" alt=""></div>
<div class="nt-container">
<div class="nt-columns-area">
<div class="nt-column-12 video_down">
<?php if(!empty($eduvert_video_title) || !empty($eduvert_video_description)): ?>
<div class="section-title">
<?php if(!empty($eduvert_video_title)): ?>
<h5><?php echo wp_kses_post($eduvert_video_title); ?></h5>
<?php endif; ?>
<?php if(!empty($eduvert_video_description)): ?>
<h3><?php echo wp_kses_post($eduvert_video_description); ?></h3>
<?php endif; ?>
</div>
<?php endif; ?>
<?php if(!empty($eduvert_video_link)): ?>
<div class="live-video">
<iframe src="<?php echo esc_url($eduvert_video_link); ?>" frameborder="0"></iframe>
</div>
<?php endif; ?>
</div>
</div>
</div>
</section>
<?php
endif; }
endif;
if ( function_exists( 'cleverfox_eduvert_lite_video' ) ) {
$cleverfox_section_priority = apply_filters( 'eduvert_section_priority', 13, 'cleverfox_eduvert_lite_video' );
add_action( 'eduvert_sections', 'cleverfox_eduvert_lite_video', absint( $cleverfox_section_priority ) );
}