| Server IP : 217.160.0.251 / Your IP : 216.73.216.183 Web Server : Apache System : Linux info 3.0 #1337 SMP Tue Jan 01 00:00:00 CEST 2000 all GNU/Linux User : u94981163 ( 8991765) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /homepages/15/d754908516/htdocs/wp-content/themes/__est-project/ |
Upload File : |
<?php
/**
* The archive of offers post type template file
*
* @link http://codex.wordpress.org/Template_Hierarchy
*
* @package WordPress
* @subpackage Estatik_Theme_Trendy
* @since Estatik Theme Trendy 1.0
*/
?>
<?php get_header(); ?>
<div class="main-block">
<div class="archive__offers js-posts-wrapper">
<?php if ( have_posts() ): ?>
<div class="archive__grid js-archive">
<?php while ( have_posts() ) : the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="archive__content">
<?php the_title( '<h2>', '</h2>' ); ?>
<div class="decoration">
<div class="decoration-inside"></div>
</div>
<div class="content-block__content">
<?php the_excerpt(); ?>
</div>
<a class="theme-button-light" href="<?php echo esc_url( get_permalink() ); ?>"><?php _e( 'Learn more', 'es-project' );?></a>
</div>
<div class="archive__img">
<?php if ( has_post_thumbnail() ):?>
<a class="content-block__title" href="<?php echo esc_url( get_permalink() ); ?>"
rel="bookmark">
<div class="content-block__image">
<?php the_post_thumbnail( 'offer-thumbnail' ); ?>
</div>
</a>
<?php endif;?>
</div>
</article>
<?php endwhile; ?>
</div>
<?php the_posts_pagination( array(
'prev_next' => __( 'Previous', 'es-project' ),
'show_all' => __( 'Next', 'es-project' ),
'end_size' => 1,
'mid_size' => 1,
'screen_reader_text' => ' ',
'type' => 'list'
) ); ?>
<?php else: ?>
<p><?php _e( 'Sorry, nothing found', 'es-project' ); ?></p>
<?php endif; ?>
</div>
</div>
<?php get_footer();