HEX
Server: Apache/2.4.46 (Win64) OpenSSL/1.1.1j PHP/8.4.25
System: Windows NT DESKTOP-4TAV2RJ 10.0 build 19045 (Windows 10) AMD64
User: fred (0)
PHP: 8.4.25
Disabled: NONE
Upload Files
File: C:/xampp/htdocs/wordpress/wp-content/themes/grey-matter/search.php
<?php get_header(); ?>

<!-- CONTENT -->

  <div id="content">

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

   			<h1 class="pagetitle"><?php _e('Search Results','grey_matter'); ?></h1>

    		<?php while (have_posts()) : the_post(); ?>

    			<h1><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php _e('Read the whole post','grey_matter'); ?>"><?php the_title(); ?></a></h1>

    			<?php the_excerpt(); ?>

          <div id="postmeta">

            <?php include("inc.postmeta.php"); ?>

				  </div>

    		<?php endwhile; ?>

   			<div id="navigation">
   				<div class="left"><?php next_posts_link(__('&laquo; Older Entries','grey_matter')) ?></div>
 	  			<div class="right"><?php previous_posts_link(__('Newer Entries &raquo;','grey_matter')) ?></div>
	  	  </div>

		<?php else : ?>
			<h1 class="pagetitle"><?php _e('No posts found','grey_matter'); ?></h1>
			<p><?php _e('Please try a different search.','grey_matter'); ?></p>
		<?php endif; ?>

  </div>

  <?php get_sidebar(); ?>

<!-- /CONTENT -->

<?php get_footer(); ?>