%PDF- %PDF-
Direktori : /var/www/tif-dev/wp-content/themes/inkfactory/ |
Current File : //var/www/tif-dev/wp-content/themes/inkfactory/single-piercing.php |
<?php /** * The template for displaying all single posts * * @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post * * @package Inkfactory */ get_header(); ?> <div class="page-wrapper"> <?php while (have_posts()) : the_post(); ?> <div class="container"> <!-- Breadcrumbs --> <?php if (function_exists('yoast_breadcrumb')) { yoast_breadcrumb('<div class="breadcrumbs"><div class="breadcrumbs__wrapper">', '</div></div>'); } ?> <div class="content-wrapper max-w960"> <h1 class="h2 text-center"><?php the_title(); ?></h1> <?php the_content(); ?> </div> </div> <?php endwhile; ?> <div class="container"> <div class="gallery"> <?php global $post; $query = new WP_Query([ 'post_type' => 'piercing', 'post_parent' => get_the_ID(), 'posts_per_page' => -1 ]); if ($query->have_posts()) { while ($query->have_posts()) { $query->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 } } wp_reset_postdata(); ?> </div> </div> </div> <?php get_footer();