Forums

Number each result (3 posts)

  1. taghaboy
    Member
    Posted 3 years ago #

    I have a question regarding WordPress Search Results:
    I try to "Number each result" in my search page, with some help of "nublooo" i'v do that code who let me to number each result and it work perfectly.
    But while i click for next result, the number count to new number again:
    page 01 : 1 - 2 - 3 - 4 - 5
    page 02 : 1 - 2 - 3 - 4 - 5
    ... and other page results

    her the code i use:

    <?php get_header($postnum = 1); ?>
    <?php if (have_posts()) : ?>
    <?php while (have_posts()) : the_post(); ?>
    
            <div class="count">
    <?php echo $postnum; ?>
    	</div>
    
    	<p>lorem ipsum dolar set</p>
    
    <?php $postnum++; ?>
    <?php endwhile; ?>
    
    	<div class="page-nav">
    		<span class="previous-entries"><?php next_posts_link('Next') ?></span>
    		<span class="next-entries"><?php previous_posts_link('Previous') ?></span>
    	</div>
    
    <?php else : ?>
    <?php endif; ?>
    <?php get_footer(); ?>

    Thanks!
    Cheers,

  2. taghaboy
    Member
    Posted 3 years ago #

    any idea please.

  3. taghaboy
    Member
    Posted 3 years ago #

    hi, hop some one have idea.

Topic Closed

This topic has been closed to new replies.

About this Topic