-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearch.php
More file actions
16 lines (15 loc) · 769 Bytes
/
search.php
File metadata and controls
16 lines (15 loc) · 769 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php get_header(); ?>
<?php get_sidebar(); ?>
<div id="main">
<div class="archive"><?php printf( __( 'Search Results for: %s' ), '<span>' . get_search_query() . '</span>'); ?></div>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post();?>
<div id="post">
<h1><a href="<?php the_permalink() ?>"><?php the_title();?></a></h1>
<div id="meta">By <?php the_author() ?> | Date: <?php the_time('F jS, Y') ?> | Category: <?php the_category(', ') ?> </div>
<div class="thumbnail"><?php the_post_thumbnail(); ?></div><?php the_excerpt(); ?><div style="clear:both;"></div>
</div>
<?php endwhile; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>
</div>
<?php get_footer(); ?>