HEX
Server: Apache
System: Linux hz.vslconceptsdomains.com 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64
User: dkfounda (3233)
PHP: 8.1.34
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/dkfounda/public_html/wp-content/themes/revive-charity/archive-give_forms.php
<?php
/**
 *  Used to display an archive page of Give Donation forms.
 *
 * @package Revive_Charity
 */

get_header();
?>

	<div id="primary" class="content-area">
		<main id="main" class="site-main give-archive" role="main">
			
            <?php
    		if ( have_posts() ) : 
            
    			/* Start the Loop */
    			while ( have_posts() ) : the_post();
    				
    				get_template_part( 'template-parts/content', 'give-form' );
    
    			endwhile;
    
    			the_posts_pagination( array(
                    'prev_text'          => '',
                    'next_text'          => '',
                    'before_page_number' => '<span class="meta-nav screen-reader-text">' . __( 'Page', 'revive-charity' ) . ' </span>',
                 ) );
    
    		else :
    
    			get_template_part( 'template-parts/content', 'none' );
    
    		endif; ?>
            
		</main>

	</div>

<?php 
get_sidebar();
get_footer();