Files
agroexpert/partials/latest-legislation-posts.php
2024-03-01 17:47:03 +03:00

28 lines
1.1 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<div class="law">
<h3 class="subtitle-20 right-title">Законодательство</h3>
<div class="content-right__links">
<?php
$args = array(
'category_name' => 'zakonodatelstvo', // Slug категории
'posts_per_page' => 3, // Количество постов
'orderby' => 'date', // Сортировка по дате
'order' => 'DESC' // В порядке убывания (самые свежие)
);
$legislation_posts = new WP_Query($args);
if ($legislation_posts->have_posts()) {
while ($legislation_posts->have_posts()) {
$legislation_posts->the_post();
echo '<div class="doc">
<a href="' . get_permalink() . '" class="content-right__link-item link">' . get_the_title() . '</a>
</div>';
}
wp_reset_postdata();
} else {
echo '<p>Посты в категории "законодательство" не найдены.</p>';
}
?>
</div>
</div>