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/public_html/wp-content/themes/charity-fundraiser/page.php
<?php
/**
 * The template for displaying all pages.
 * @package Charity Fundraiser
 */

get_header(); ?>

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

<?php while ( have_posts() ) : the_post(); ?>
    <div class="title-box">
    	<div class="container">
    		<h1><?php the_title();?></h1>
    	</div>
    </div>
    <div id="wrapper" class="container">
        <div class="main-wrap-box"> 
            <div class="feature-box">
                <div class="bradcrumbs">
                    <?php charity_fundraiser_the_breadcrumb(); ?>
                </div>
            </div> 
            <div class="feature-box">
                <img src="<?php the_post_thumbnail_url('full'); ?>">
            </div>
            <?php the_content(); ?> 
            <?php wp_link_pages( array(
                    'before'      => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'charity-fundraiser' ) . '</span>',
                    'after'       => '</div>',
                    'link_before' => '<span class="page-number">',
                    'link_after'  => '</span>',
                    'pagelink'    => '<span class="screen-reader-text">' . __( 'Page', 'charity-fundraiser' ) . ' </span>%',
                    'separator'   => '<span class="screen-reader-text">, </span>',
            )   ); ?>       
            <div class="clear"></div>    
        </div>
        <?php
            // If comments are open or we have at least one comment, load up the comment template.
            if ( comments_open() || get_comments_number() ) {
                comments_template();
            }
        ?>
    </div>
<?php endwhile; // end of the loop. 
wp_reset_postdata();?>

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

<?php get_footer(); ?>