| 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/image-with-description/ |
Upload File : |
<?php
if (function_exists('render_block_preview_image') && render_block_preview_image($block, 'Image With Description Preview ')) {
return;
}
$className = 'quote-block sk-section-spacing ' . ($block['className'] ?? '');
?>
<section class="<?php echo esc_attr(trim($className)); ?>">
<div class="container">
<?php $image = get_field('image');
$cta_description = get_field('cta_description');
if (isset($image) && !empty($image) || isset($cta_description) && !empty($cta_description)): ?>
<div class="quote-wrapper">
<?php $cta_heading = get_field('cta_heading');
if(isset($cta_heading) && !empty($cta_heading)) : ?>
<h2><?php echo esc_html( $cta_heading ) ; ?></h2>
<?php endif ; ?>
<?php if (isset($image) && !empty($image)) : ?>
<img src="<?php echo esc_url($image['url']); ?>" alt="<?php echo (isset($image['alt']) && !empty($image['alt'])) ? esc_attr($image['alt']) : ''; ?>" style="margin: auto;">
<?php endif;
if (isset($cta_description) && !empty($cta_description)): ?>
<p><?php echo wp_kses_post($cta_description); ?></p>
<?php endif; ?>
</div>
<?php endif; ?>
</div>
</section>