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/martyknows.com/wp-content/themes/dark-wood/search.php
<?php get_header(); ?>
<?php $options = initoptions(); ?>
    <div id="content">
        <div class="container">
            <?php if (have_posts()) : ?>
            <h2 class="pagetitle">Search Results</h2>
            <hr>
            <?php while (have_posts()) : the_post(); ?>
                <div <?php post_class() ?> id="post-<?php the_ID(); ?>">
                    <h2 class="posttitle"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
                    <div class="postcomments"><?php comments_popup_link('0', '1', '%','','Off'); ?></div>
                    <div class="clear"></div>
                    <small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small>
                    <div class="entry">
                        <?php the_content('Read the rest of this entry &raquo;'); ?>
                    </div>
                    <div class="clear"></div>
                    <p class="postmetadata">
                        <?php if($options['show_tags']) { ?><?php the_tags('<img src="'.get_bloginfo('template_url').'/images/tag_icon.png" />', ', ', '<br />'); ?><?php } ?>
                        <?php if($options['show_cats']) { ?><img src="<?php bloginfo('template_url'); ?>/images/category_icon.png" /> <?php the_category(', ') ?><?php } ?> <?php edit_post_link('| Edit this Entry', '', ''); ?>
                    </p>
                </div>
                <?php endwhile; ?>
                <?php include(TEMPLATEPATH . '/navigation.php'); ?>
            <?php else : ?>
                <h2>No Results</h2>
                <p>Sorry, but you are looking for something that isn't here.</p>
                <?php get_search_form(); ?>
            <?php endif; ?>
        </div>
        <?php include(TEMPLATEPATH . '/sidebar1.php'); ?>
        <?php if($options['sidebar_count'] == "2") { ?>
            <?php include(TEMPLATEPATH . '/sidebar2.php'); ?>
        <?php } ?>
        <div class="clear"></div>
    </div>
<?php get_footer(); ?>