noma
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: right sidebar disapears after incorrect searchHere’s the code (its not long):
<?php get_header(); ?>
<?php include(TEMPLATEPATH.”/l_sidebar.php”);?>
<div id=”content”>
<div class=”contentbar”><div id=”primarycontent”>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class=”post” id=”post-<?php the_ID(); ?>”>
<div class=”contenttitle”>
<div class=”details”><div id=”contentdateauthor”>
<?php the_time(‘F j, Y’) ?> </div>
<div class=”contenttitleinfo”>
<h2>” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><?php the_title(); ?></h2>
</div>
<div class=”contenttitledate”>
</div> <div class=”contentarea”>
<div class=”entry”><?php the_content(‘Continue Reading »’); ?>
</div><ul class=”controls”>
<li class=”readmore”><?php edit_post_link(‘Edit’); ?>
<li class=”comments”><?php comments_popup_link(‘Comments(0)’, ‘Comments(1)’, ‘Comments(%)’); ?>
</div>
</div>
<div class=”divider”></div>
<?php endwhile; ?>
<p align=”center”><?php posts_nav_link(‘ – ‘,’« Prev’,’Next »’) ?></p>
<?php else : ?>
<h2 class=”center”>Not Found</h2>
<p class=”center”>Sorry, but you are looking for something that isn’t here.</p>
<?php endif; ?>
</div> </div> </div> </div> </div>
<?php include(TEMPLATEPATH.”/r_sidebar.php”);?>
<?php get_footer(); ?>