| Server IP : 52.202.253.110 / Your IP : 216.73.217.139 Web Server : Apache/2.4.56 (Amazon Linux) OpenSSL/3.0.8 System : Linux ip-172-32-10-67.ec2.internal 6.1.49-70.116.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Sep 6 22:13:07 UTC 2023 x86_64 User : ec2-user ( 1000) PHP Version : 8.2.9 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/vhosts/cirrata_html/wp-content/themes/neve/ |
Upload File : |
<?php
/**
* Author: Uriahs Victor
* Created on: 14/07/2021 (d/m/y)
*
* @package Neve
*/
$container_class = apply_filters( 'neve_container_class_filter', 'container', 'download-archive' );
get_header();
?>
<div id= "nv-edd-download-archive-container" class="<?php echo esc_attr( $container_class ); ?>">
<div id="wrapper">
<?php
/**
* Executes actions before the download content.
*
* @since 3.0.0
*/
do_action( 'neve_before_download_archive' );
?>
<div id="nv-edd-grid-container">
<?php
if ( have_posts() ) {
while ( have_posts() ) {
the_post();
get_template_part( 'template-parts/content-download-archive' );
}
} else {
get_template_part( 'template-parts/content', 'none' );
}
?>
</div>
<?php
/**
* Executes actions after the post content.
*
* @since 3.0.0
*/
do_action( 'neve_after_download_archive' );
/**
* Download pagination
*/
neve_edd_download_nav();
?>
</div>
</div>
<?php
get_footer();