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/page-with-left-sidebar.php
<?php
/**
 * Template Name: Page with Left Sidebar
 */

get_header(); ?>

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

<div class="container">
    <div class="main-wrap-box"> 
        <div class="row"> 
        	<div id="sidebar" class="col-lg-3 col-md-3">
        		<?php dynamic_sidebar('sidebar-2'); ?>
        	</div>		 
        	<div class="col-lg-9 col-md-9" id="wrapper" >
        		<?php while ( have_posts() ) : the_post(); ?>
                
                    <h1><?php the_title();?></h1>
                    <img src="<?php the_post_thumbnail_url(); ?>">
                    <?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>',
                    ) ); 
                    
                    //If comments are open or we have at least one comment, load up the comment template
                    	if ( comments_open() || '0' != get_comments_number() )
                        	comments_template();
                    ?>
                <?php endwhile; wp_reset_postdata();?>
            </div>
            <div class="clearfix"></div> 
        </div>   
    </div>
</div>

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

<?php get_footer(); ?>