File: /home/analitts.ru/public_html/wp-content/themes/main/search.php
<?php get_header(); ?>
<div class="center">
<div class="main-text">
<h2><?php echo 'Результат поиска: ' . '<span>' . get_search_query() . '</span>'; ?></h2>
<?php
if (have_posts()) :
while (have_posts()) : the_post();
?>
<div id="posts">
<ol><li><h3><a href="<?php the_permalink() ?>"><?php the_title() ?></a></h3></li>
<p>
<?php the_excerpt() ?>
</p>
<div>Дата добавления:
<?php the_date() ?>
</div></ol>
</div>
<?php endwhile; ?>
<?php
else :
echo "<p>Извините, по Вашему результату ничего не найдено</p>";
endif;
?>
</div>
</div>
<?php get_footer(); ?>