search.php
897 Bytes
<?php get_header(); ?>
<div id="page-content">
<div class="content-wrap">
<div id="no-image">
<?php if (have_posts()) : ?>
<h1>Search results for "<?php the_search_query(); ?>"</h1>
<?php while (have_posts()) : the_post(); ?>
<div <?php post_class(); ?>>
<h4><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h4>
<?php the_excerpt(); ?>
</div>
<?php endwhile; ?>
<?php else: ?>
<p><?php _e('Sorry, but nothing matched your search criteria. Please try again with some different keywords.'); ?></p>
<?php get_search_form(); ?>
<?php endif; ?>
</div>
</div>
</div>
<?php get_footer(); ?>