| Server IP : 65.108.144.40 / Your IP : 216.73.217.165 Web Server : Apache/2.4.52 (Ubuntu) System : Linux ubuntu-8gb-hel1-1 5.15.0-173-generic #183-Ubuntu SMP Fri Mar 6 13:29:34 UTC 2026 x86_64 User : dev ( 1000) PHP Version : 8.2.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/successkpi/wp-content/themes/successkpi/blocks/two-column-video-block/ |
Upload File : |
<?php
if (function_exists('render_block_preview_image') && render_block_preview_image($block, 'Two Column Video Preview')) {
return;
}
$className = 'two-column-video-block ' . ($block['className'] ?? '');
$video_1 = get_field('video_1');
$video_2 = get_field('video_2');
?>
<section class="<?php echo esc_attr(trim($className)); ?>">
<div class="container">
<div class="two-column-video-wrapper">
<?php if ($video_1): ?>
<div class="two-column-video-card">
<video autoplay loop muted playsinline>
<source src="<?php echo esc_url($video_1['url']); ?>" type="video/mp4">
</video>
</div>
<?php endif; ?>
<?php if ($video_2): ?>
<div class="two-column-video-card">
<video autoplay loop muted playsinline>
<source src="<?php echo esc_url($video_2['url']); ?>" type="video/mp4">
</video>
</div>
<?php endif; ?>
</div>
</div>
</section>