• File: search.php
  • Full Path: /home/romi/public_html/wp-content-20260417071838/themes/news-blue-01/search.php
  • Date Modified: 04/23/2023 12:07 AM
  • File size: 1014 B
  • MIME-type: text/x-php
  • Charset: utf-8
<?php get_header(); ?>

<div id="post">
<h2>Search Results</h2>	
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="content">	
<div class="entry">
<h2 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
<p><small><?php the_time('l, F jS, Y') ?></small></p>

<i><p class="postmeta">Category: <?php the_category(', ') ?> | Comments: <?php comments_popup_link('0', '1', '%'); ?> <?php edit_post_link('Edit This', ' | ', ''); ?></p></i>
</div></div>
		<?php endwhile; ?>

		<div class="navigation">
			<div class="alignleft"><?php next_posts_link('&laquo; Previous Entries') ?></div>
			<div class="alignright"><?php previous_posts_link('Next Entries &raquo;') ?></div>
</div>

	<?php else : ?>
<div class="content">	
<div class="entry">
		<h2>No posts found. Try a different search?</h2>
</div></div>

	<?php endif; ?>

	</div> 

<?php get_sidebar(); ?>

<?php get_footer(); ?>