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: //proc/self/cwd/wp-content/themes/charity-fundraiser/page-template/custom-front-page.php
<?php
/**
 * Template Name: Custom home page
 */

get_header(); ?>

<?php do_action('charity_fundraiser_above_slider_section'); ?>

<?php if( get_theme_mod( 'charity_fundraiser_slider_hide') != '') { ?>
  <section id="slider">
    <div id="carouselExampleIndicators" class="carousel slide carousel-fade" data-ride="carousel"> 
      <?php $pages = array();
        for ( $count = 1; $count <= 4; $count++ ) {
          $mod = intval( get_theme_mod( 'charity_fundraiser_slider_page' . $count ));
          if ( 'page-none-selected' != $mod ) {
            $pages[] = $mod;
          }
        }
        if( !empty($pages) ) :
          $args = array(
            'post_type' => 'page',
            'post__in' => $pages,
            'orderby' => 'post__in'
          );
          $query = new WP_Query( $args );
          if ( $query->have_posts() ) :
            $i = 1;
      ?>
      <div class="carousel-inner" role="listbox">
        <?php  while ( $query->have_posts() ) : $query->the_post(); ?>
          <div <?php if($i == 1){echo 'class="carousel-item active"';} else{ echo 'class="carousel-item"';}?>>
            <img src="<?php the_post_thumbnail_url('full'); ?>"/>
            <div class="carousel-caption">
              <div class="inner_carousel">
                <h2 class="animated fadeInDown"><?php the_title(); ?></h2>
                <p><?php $excerpt = get_the_excerpt(); echo esc_html( charity_fundraiser_string_limit_words( $excerpt,25) ); ?></p>
                <div class="more-btn">              
                  <a href="<?php the_permalink(); ?>"><?php esc_html_e('LEARN MORE','charity-fundraiser'); ?></a>
                </div>
              </div>
            </div>
          </div>
        <?php $i++; endwhile; 
        wp_reset_postdata();?>
      </div>
      <?php else : ?>
          <div class="no-postfound"></div>
        <?php endif;
      endif;?>
      <a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
        <span class="carousel-control-prev-icon" aria-hidden="true"><i class="fas fa-chevron-left"></i></span>
      </a>
      <a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
        <span class="carousel-control-next-icon" aria-hidden="true"><i class="fas fa-chevron-right"></i></span>
      </a>
    </div>  
    <div class="clearfix"></div>
  </section>
<?php }?>

<?php do_action('charity_fundraiser_above_help_section'); ?>

<?php if( get_theme_mod( 'charity_fundraiser_help_title') != '' || get_theme_mod( 'charity_fundraiser_image_post') != '' || get_theme_mod( 'charity_fundraiser_causes_title') != ''  || get_theme_mod( 'charity_fundraiser_help_category') != '') { ?>
  <section id="help">
    <div class="container">
      <?php if( get_theme_mod('charity_fundraiser_help_title') != ''){ ?>
        <h3 class="animated fadeInDown"><?php echo esc_html(get_theme_mod('charity_fundraiser_help_title','')); ?></h3>
        <div class="border-image">
          <img src="<?php echo esc_url( get_theme_mod('',get_template_directory_uri().'/images/tittle-line.png') ); ?>" alt="">
        </div>
      <?php }?>
      <div class="row">
        <div class="col-lg-6 col-md-6">
          <?php
          $postData1 =  get_theme_mod('charity_fundraiser_image_post');
          if($postData1){
            $args = array( 'name' => esc_html($postData1 ,'charity-fundraiser'));
            $query = new WP_Query( $args );
            if ( $query->have_posts() ) :
              while ( $query->have_posts() ) : $query->the_post(); ?>
                <div class="box-image animated fadeInDown">
                  <img src="<?php the_post_thumbnail_url('full'); ?>"/>
                </div>
              <?php endwhile; 
              wp_reset_postdata();?>
              <?php else : ?>
                <div class="no-postfound"></div>
              <?php
          endif; }?>
        </div>
        <div class="col-lg-6 col-md-6">
          <?php if( get_theme_mod('charity_fundraiser_causes_title') != ''){ ?>
            <h4 class="animated fadeInDown"><?php echo esc_html(get_theme_mod('charity_fundraiser_causes_title','')); ?></h4>
            <hr class="help">
          <?php }?>
          <?php 
          $catData = get_theme_mod('charity_fundraiser_help_category');
            if($catData){              
              $page_query = new WP_Query(array( 'category_name' => esc_html( $catData ,'charity-fundraiser')));?>
              <?php while( $page_query->have_posts() ) : $page_query->the_post(); ?>
                <div class="help-box">
                <div class="row animated fadeInDown">
                  <div class="col-lg-3 col-md-3">
                    <img src="<?php the_post_thumbnail_url(); ?>" />
                  </div>
                  <div class="col-lg-9 col-md-9">
                    <h5><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h5>
                    <p><?php $excerpt = get_the_excerpt(); echo esc_html( charity_fundraiser_string_limit_words( $excerpt,8 ) ); ?></p>
                  </div>
                </div>
              </div>
            <?php endwhile;
            wp_reset_postdata();
          }
          ?>
        </div>
      </div>
    </div>
  </section>
<?php }?>

<?php do_action('charity_fundraiser_after_about_section'); ?>

<div class="container">
  <?php while ( have_posts() ) : the_post(); ?>
    <?php the_content(); ?>
  <?php endwhile; // end of the loop. ?>
</div>

<?php get_footer(); ?>