Files
agroexpert/templates/advertisers.php

32 lines
875 B
PHP
Raw Normal View History

2024-03-01 17:47:03 +03:00
<?php
/*
Template Name: Шаблон страницы рекламодателей
*/
2024-03-12 09:16:19 +03:00
$advertisers = new WP_Query([
'post_type' => 'advertiser',
'posts_per_page' => 10,
'orderby' => 'date',
'order' => 'ASC'
]);
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">
2024-03-12 09:16:19 +03:00
<? get_template_part('content-advertiser', null, ['advertiser' => $advertisers]) ?>
2024-03-01 17:47:03 +03:00
</div>
2024-03-12 09:16:19 +03:00
<a href="<?= home_url() ?>" class="articles-preview__show-next">На главную</a>
2024-03-01 17:47:03 +03:00
<div class="articles__spacer-container">
<div class="articles__spacer"></div>
<div class="articles__spacer"></div>
</div>
</div>
<?php
2024-03-12 09:16:19 +03:00
get_footer(); ?>