update theme

This commit is contained in:
2024-03-12 09:16:19 +03:00
parent 10722da013
commit bef7aac0d5
74 changed files with 2018 additions and 2417 deletions

View File

@@ -1,5 +1,11 @@
<?php
$posts = get_post_query('post', 1, 'ASC', '', 'interviews');
$posts = new WP_Query([
'category_name' => 'interviews',
'post_type' => 'post',
'posts_per_page' => 1,
'orderby' => 'date',
'order' => 'DESC'
]);
if ($posts->have_posts()) :
while ($posts->have_posts()) :