<a href="<a href=" http:="" wordpress="" category="" glavnaya-rubrika-2="" podrubrika01="" "="" rel="category tag">Подрубрика01</a>
<a href="<?php the_category(', '); ?>"><?php $cat = get_the_category();
echo $cat[0]->cat_name; ?></a>
<?php
$query2 = new WP_Query(array(
'post_type' => 'post',
'post_status' => 'publish',
'offset' => 1,
'posts_per_page' => 4,
'category__in' => 7
));
// Цикл
?>
<ul class="topNews">
<?php
if ($query2->have_posts()) {
while ($query2->have_posts()) {
$query2->the_post(); ?>
<li>
<div class="contentSmall">
<?php if (has_post_thumbnail()) { ?>
<?php the_post_thumbnail(array(184, 136)); ?>
<?php } ?>
<h1><a href="<?php echo $myLink ?>"><?php the_title(); ?></a></h1>
<?php the_content(); ?>
<div class="dateNav">
<div class="currentDate">
<p><?php echo get_the_date('j M') ?></p>
<p class="year"><?php echo get_the_date('Y') ?></p>
</div>
<a href="#">СМИ</a>
</div>
</div>
</li>
<?php
}
?>
</ul>
<?php
} else {
// Постов не найдено
}