Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter wpuzer2

    (@wpuzer2)

    I see i was looking in wrong file.

    The index.php looks like this

    <?php get_header();
    /* Simplifisticate2 1.6 - SUPPORT: [email protected] */
    
    if ( isset($_GET['panel']) ) {
    	include('panel.php');
    } else {
    
    ?>
    
    <div class="content">
    
    	<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    
    		<h2 id="post-<?php the_ID(); ?>"><a href="<?php echo get_permalink() ?>" rel="bookmark" title="Permanent Link: <?php the_title(); ?>"><?php the_title(); ?></a></h2>
    
    				<div class="meta" >
    
    						<?php the_time('d/m/Y') ?> <?php the_time('G:i') ?> | <?php the_category(', ') ?> <?php comments_popup_link('', ' | 1 reply', ' | % replies'); ?>	<?php if (function_exists('show_post_count')) {echo ' | ', show_post_count($post->ID, $before="", $after=" views"); } ?> | <?php comments_rss_link('RSS'); ?>
    
    				</div>		
    
    				<div class="entry">
    					<?php the_excerpt() ?>
    					<?php /*the_content() */?>
    				</div>
    
    				<div class="entryspacer">&nbsp;</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>Not Found</h2>
    		<p>Couldn't find those keywords, you can try again below...</p>
    		<div align="center"><?php include (TEMPLATEPATH . "/searchform.php"); ?></div>
    		<div class="spacer">&nbsp;</div>
    
    	<?php endif; ?>
    
    <?php }
    
    get_footer(); ?>
    Thread Starter wpuzer2

    (@wpuzer2)

    Sorry for the horrible spelling 🙂

Viewing 2 replies - 1 through 2 (of 2 total)