| 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/guide-page-content-block/ |
Upload File : |
<?php
if (function_exists('render_block_preview_image') && render_block_preview_image($block, 'Guide page content block preview')) {
return;
}
$className = 'sk-guide-content sk-section-spacing ' . ($block['className'] ?? '');
$description = get_field('description');
$heading2 = get_field('heading_field_font_size_plus');
$enable_social_share = get_field('enable_social_share');
?>
<section class="<?php echo esc_attr(trim($className)); ?>" data-aos="fade-up">
<?php if (isset($description) && !empty($description) || !empty($enable_social_share)) : ?>
<div class="container">
<?php echo wp_kses_post($description);
if ($heading2) {
echo '<h2 class="heading-font-plus-size">' . esc_html($heading2) . '</h2>';
}
?>
<?php $sub_heading = get_field('sub_heading');
if (
!empty($enable_social_share) &&
!empty($sub_heading) &&
shortcode_exists('social_share')
) : ?>
<div class="social-icons">
<h4 class="share-resource-title">
<?php echo esc_html($sub_heading); ?>
</h4>
<?php echo do_shortcode('[social_share]'); ?>
</div>
<?php endif; ?>
</div>
<?php endif; ?>
</section>