Keep the “original” Loop while using multiple Loops
-
By now, i know about half a dozen ways to realize multiple loops. But i haven’t managed to keep the “orinial” (the one with the content which should be on the site) loop for the site.
How is it possible to recall the “original” loop after calling “special” loops before with code e.g.
<?php $posts = get_posts(‘category=1&numberposts=1’); ?>
or
<?php query_posts(‘cat=1&showposts=1’); ?>
or
<?php $my_query = new WP_Query(‘cat=1&showposts=1);>In my special case i have 4 “special” loops before and 2 after the position where the “otiginal” loop should be displayed.
Has someone a solution or a hint for me?
Thx
MoPS: the search only shows me the some ten posts every time i click “next”…so it is not really helpfull for me 🙁
The topic ‘Keep the “original” Loop while using multiple Loops’ is closed to new replies.