Forum Replies Created

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

    (@thehenry)

    This code works perfectly, expect, is there anyway you could make it to where it shows more than just 10 results. Like adding a link at the bottom to read “More Results” Thank you for the help!

    Thread Starter thehenry

    (@thehenry)

    Yes here it is

    <?php get_header(); ?>
    
    	<div id="content">
    	<?php if (have_posts()) : ?>
    
    		<?php while (have_posts()) : the_post(); ?>
    
    		<div class="post">
    
    			<?php the_content('Read the rest of this entry &raquo;'); ?>
    			 <hr/>
    		</div>
    
    		<?php endwhile; ?>
    
    		<div class="navigation">
    			<div class="alignleft"><?php next_posts_link('&laquo; Older Entries') ?></div>
    			<div class="alignright"><?php previous_posts_link('Newer Entries &raquo;') ?></div>
    		</div>
    
    	<?php else : ?>
    
    		<h2 class="center">Not Found</h2>
    		<p class="center">Sorry, but you are looking for something that isn't here.test</p>
    
    	<?php endif; ?>
    
    	</div>
    
    <?php get_footer(); ?>

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