wp_get_post_terms
<?php
$term_list = wp_get_post_terms(get_the_ID(), 'type_tovar', array("fields" => "all"));
foreach ( $term_list as $term ) {
echo $term->slug;
}
?>
<?php
$query = new WP_Query('post_type=tovar');
if( $query->have_posts() ){
while( $query->have_posts() ){ $query->the_post();
?>
<div class="col-md-6 col-lg-3 mix tehnik">
<div class="item-catalog">
<div class="img-product">
<a href="<?php the_permalink(); ?>">
<img src="<?php echo get_the_post_thumbnail_url(); ?>" alt="">
</a>
</div>
<div class="name-product">
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
</div>
<div class="btn-product"><a href="<?php the_permalink(); ?>">Заказать</a></div>
<?php
$terms = get_terms( array(
'taxonomy' => 'type_tovar'
) );
foreach ( $terms as $term ) {
echo $term->slug;
}
?>
</div>
</div>
<?php
}
wp_reset_postdata(); // сбрасываем переменную $post
}
?>
header{
display: flex;
justify-content: space-between;
}
<h1>Продажа ведер в компании <?php dynamic_sidebar( 'название' ); ?></h1>
И это всё item для слайдеров ....