HEX
Server: Apache
System: Linux p3plzcpnl504740.prod.phx3.secureserver.net 4.18.0-553.141.2.lve.el8.x86_64 #1 SMP Wed Jul 8 16:10:02 UTC 2026 x86_64
User: l2pbkn5l6xav (4972877)
PHP: 7.2.34
Disabled: NONE
Upload Files
File: /home/l2pbkn5l6xav/www/wp-content/themes/ngo-charity-lite/template-parts/homepage/cta-section.php
<?php
$nct_theme_options = ngo_charity_lite_theme_options();
$about = array($nct_theme_options['cta']);
$args = array(
    'post_type' => 'page',
    'post__in' => $about
);
$about_query = new WP_Query($args);
if ($about_query->have_posts()) {
    while ($about_query->have_posts()) {
        $about_query->the_post();
        ?>
        <section class="section cta-sec">
            <div class="container">
                <div class="row">
                    <div class="cta-content" data-aos="fade-up">
                        <h2 class="cta-title"><?php echo esc_html(get_the_title()); ?></h2>
                    </div>
                </div>
            </div>
        </section>
        <?php
    }
    wp_reset_postdata();
}