HEX
Server: Apache
System: Linux pdx1-shared-a1-38 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64
User: mmickelson (3396398)
PHP: 8.1.31
Disabled: NONE
Upload Files
File: /home/mmickelson/tfgarchive/wpblogtest1.old/wp-content/themes/uchilla1.0/search.php
<?php get_header(); ?>

<div id="main" class="clear">  
<div id="content">

    <?php if (have_posts()) : ?>

    <h1 class="pagetitle">Search Results <?php if(isset($_REQUEST['s']) && trim($_REQUEST['s'])!=''):?>for: <strong><?=$_REQUEST['s']?></strong> <?php endif; ?></h1>

    <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
    while (have_posts()) : the_post();
    $image = get_post_meta($post->ID, 'photo', true);
    ?>

    <div class="post clear" id="post-<?php the_ID(); ?>">
				<div class="entry-date">
					<div class="entry-day"><?php the_time('d'); ?></div>
					<div class="entry-month"><?php the_time('M'); ?></div>
					<div class="entry-year"><?php the_time('Y'); ?></div>
				</div>	
				<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>			
				<div class="entry-filed">Category: <span class="catposted"><?php the_category(', ') ?></span></div>
				<div class="entry-content">
					<?php if($image!=''): ?>
						<div class="image"><img src="<?=$image?>" alt="<?php the_title(); ?>" /></div>
					<?php endif; ?>
					<?php the_excerpt(''); ?>
				</div>
				
				<div style="clear:both"></div>
				
				<p><a href="<?php the_permalink() ?>" class="more-link">Continue reading &raquo;</a> <span class="comments_link"><?php comments_popup_link('No comments', '1 Comment', '% Comments'); ?></span></p>
				
		      <?php wp_link_pages();?>

	
  	</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 : ?>

	    <h2>Nothing found</h2>
		<p class="center">Sorry, but you are looking for something that isn't here.</p>
		<p><a href="javascript:history.back(-1)"><strong>&laquo; Go back</strong></a></p>

    <?php endif; ?>

  </div> <!-- end content -->
  
  <?php get_sidebar(); ?>
  
 </div> <!-- end main -->

<?php get_footer(); ?>