Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter evilpupil

    (@evilpupil)

    update v1.5.4
    Plugin still buggy. I have lots of pages, and it’s only showing 1/3 of it. Default view still gives error 500.

    Forum: Fixing WordPress
    In reply to: offset
    Thread Starter evilpupil

    (@evilpupil)

    nevermind.. problem solved..

    i got the same problem. please help

    Thread Starter evilpupil

    (@evilpupil)

    thank you for the replies. problem solved..

    dear Kaf,

    same as the above, can u guide me on how to make a 3 multicolumn loop? for example take a look at this site reformrevolution[dot]com. i’ve tried the method from perishablepress[dot]com but when i click the next page, it returns the same post. here’s the code :

    // FIRST LOOP: display posts 1 thru 5
    <?php query_posts(‘showposts=5’); ?>
    <?php $posts = get_posts(‘numberposts=5&offset=0’); foreach ($posts as $post) : start_wp(); ?>
    <?php static $count1 = 0; if ($count1 == “5”) { break; } else { ?>

    <?php the_title(); ?>
    <?php the_content(); ?>

    <?php $count1++; } ?>
    <?php endforeach; ?>

    // SECOND LOOP: display posts 6 thru 10
    <?php query_posts(‘showposts=5’); ?>
    <?php $posts = get_posts(‘numberposts=5&offset=5’); foreach ($posts as $post) : start_wp(); ?>
    <?php static $count2 = 0; if ($count2 == “5”) { break; } else { ?>

    <?php the_title(); ?>
    <?php the_content(); ?>

    <?php $count2++; } ?>
    <?php endforeach; ?>

    // THIRD LOOP: display posts 11 thru 15
    <?php query_posts(‘showposts=5’); ?>
    <?php $posts = get_posts(‘numberposts=5&offset=10’); foreach ($posts as $post) : start_wp(); ?>
    <?php static $count3 = 0; if ($count3 == “5”) { break; } else { ?>

    <?php the_title(); ?>
    <?php the_content(); ?>

    <?php $count3++; } ?>
    <?php endforeach; ?>

    thank you..

    re:franceking.
    hi, i’m sorry but can u tell me how to use cqs reloaded and what’s ur result?
    thank you

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