Есть кто-нибудь, кто может помочь с WordPress
Хочу получать ссылку категории, что я делаю не так?
<?php
$posts = get_posts( array(
'category' => '58',
'post_type' => 'post',
'suppress_filters' => true, // подавление работы фильтров изменения SQL запроса
) );
foreach( $posts as $post ){
setup_postdata($post);
?>
<div class="need-card">
<img src="<?php the_field('front_img_door'); ?>" alt="Двери тамбурные" class="need-card__img">
<div class="need-card-description">
<div class="need-card-description__title"><?php the_title();?></div>
<div class="need-card-description__price">от <?php the_field('price_door'); ?> <sup>000</sup> <sub>₽</sub> </div>
<?php $cat_id = get_queried_object_id(); ?>
<a href="<?php get_category_link('$cat_id'); ?>" class="need-card-description__link">Перейти в каталог</a>
</div>
</div>
<?php
}
wp_reset_postdata(); // сброс
?>
Вот цикл