<?php get_header(); ?>
<?php get_sidebar(); ?>
<div class="content">
<h2 class="page-title"><?php printf( __( '%s', 'masteritca' ),single_cat_title( '', false )); ?></h2>
<div class="catalog-wrapper">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="catalog-item">
<div class="bestsellers-img">
<?php the_post_thumbnail(); ?>
</div>
<span class="bestsellers-name"><?php the_title(); ?></span>
<a href="<?php the_permalink(); ?>" class="bestsellers-price"><?php the_field( 'product_price'); ?></a>
</div>
<?php endwhile; endif;?>
<?php if(function_exists( 'wp_pagenavi')) { wp_pagenavi(); } ?>
</div>
</div>
<?php get_footer(); ?>
<?php
$category = get_the_category();
$cat_list = $category[0]->cat_ID;
?>
<?php query_posts('cat='.$cat_list.'&order=ASC'); ?>
<?php if (have_posts()): while (have_posts()): the_post(); ?>
<tr>
<td>
<?php the_post_thumbnail('full'); ?>
</td>
<td class="separator"> </td>
<td>
<?php the_content(); ?>
</td>
</tr>
<?php endwhile; endif; wp_reset_query(); ?>