evilpupil
Forum Replies Created
-
Forum: Reviews
In reply to: [Nested Pages] breaks with the latest wpupdate 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: offsetnevermind.. problem solved..
Forum: Fixing WordPress
In reply to: Banner between post..showpost and offseti got the same problem. please help
Forum: Fixing WordPress
In reply to: can i use 1.htaccess instead of .htaccess?thank you for the replies. problem solved..
Forum: Fixing WordPress
In reply to: 2 column multi loopdear 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..
Forum: Fixing WordPress
In reply to: How to show all posts from same month/categoryre:franceking.
hi, i’m sorry but can u tell me how to use cqs reloaded and what’s ur result?
thank you