<section class="goods">
<?php while ( have_posts() ) : the_post(); ?>
<div class="goods_head" style="background: url(<?php bloginfo('template_directory'); ?>/img/title-bg.jpg">
<h2>Товары</h2>
<div class="a_links">
<a href="<?php the_permalink(); ?>">Главная<span>›</span></a>
<a href="<?php the_permalink(); ?>"><?php single_cat_title(); ?>
</a></div>
</div>
<div class="wr">
<div id="main-content" class="main gdcol gdcol1">
<div id="sidebar" class="sidebar">
<div class="sidebar__inner">
фильтр
</div>
</div>
<div id="content" class="content">
<!-- Content goes here -->
</div>
</div>
<div class="gdcol gdcol2">
<?php $query = new WP_Query( array( 'order' => 'ASC' )); if ( $query->have_posts() ) : while ( $query->have_posts() ) : $query->the_post(); ?>
<div class="good">
<a class="good_img good_img1" style="background: url(<?php echo get_post_meta($post->ID,'wpcf-img-main', true); ?>)"></a>
<div class="good_info good_info1">
<h3><a href=""><?php the_title(); ?></a></h3> <span><?php echo get_post_meta($post->ID,'wpcf-description1', true); ?></span><a href="<?php the_permalink(); ?>" class="btn_main btn_categ">Перейти</a></div>
</div>
<?php endwhile; endif; wp_reset_query(); ?>
</div>
</div>
<?php endwhile; ?>
</section>