%PDF- %PDF-
Direktori : /var/www/tif-dev/wp-content/themes/inkfactory/ |
Current File : //var/www/tif-dev/wp-content/themes/inkfactory/archive-tattoos.php |
<?php /** * The template for displaying archive pages * * @link https://developer.wordpress.org/themes/basics/template-hierarchy/ * * @package Inkfactory */ get_header(); $post_type = get_queried_object()->name; $options = get_field('settings_' . $post_type, 'options'); ?> <div class="container"> <?php if ($options && $options['title']) {; ?> <h1 class="h1 main-title"><?php echo $options['title']; ?></h1> <?php } ?> <?php if ($options && $options['description']) {; ?> <div class="content-wrapper max-w960 mb-40"> <?php echo $options['description']; ?> </div> <?php } ?> <div class="gallery"> <?php while (have_posts()) : the_post(); ?> <div class="gallery__item"> <?php the_post_thumbnail('medium', array('class' => 'img-responsive')); ?> <div class="gallery__item-content"> <h3 class="h3"><?php the_title(); ?></h3> <a href="<?php the_permalink(); ?>" class="btn btn_violet btn_big"> <span>GO</span> <span>></span> </a> </div> </div> <?php endwhile; ?> </div> <!-- Info Block --> <?php if ($options && $options['info_block']) {; ?> <div class="info-block max-w640"> <?php echo $options['info_block']; ?> </div> <?php } ?> </div> <!-- Pagination --> <?php wp_custom_pagination(); ?> <?php get_footer();