Files
agroexpert/templates/partners.php

42 lines
1.1 KiB
PHP
Raw Permalink Normal View History

2024-03-01 17:47:03 +03:00
<?php
/*
Template Name: Шаблон страницы партнёров
*/
2024-03-12 09:16:19 +03:00
$partners = new WP_Query([
'post_type' => 'partners',
'posts_per_page' => 10,
'orderby' => 'date',
'order' => 'DESC'
]);
2024-03-01 17:47:03 +03:00
?>
<?php get_header(); ?>
<div class="content-middle articles-wrapper">
<?php get_template_part('partials/rubrics-mobile'); ?>
<div class="section-title">
<h1 class="section-title__title"><?= the_title() ?></h1>
</div>
<div class="articles-preview">
<?
if ($partners->have_posts()) :
while ($partners->have_posts()) :
$partners->the_post();
?>
<a href="<?= get_permalink(); ?>" class="partner-item">
<div class="partner-item__image-container">
<?= show_post_image(); ?>
</div>
<div class="partner-item__text-container">
<p class="subtitle-16"><?= get_the_title(); ?></p>
</div>
</a>
<?php
endwhile;
endif;
?>
</div>
<? custom_pagination($partners); ?>
</div>
2024-03-12 09:16:19 +03:00
<?php get_footer(); ?>