The wp-reset-query tag has no wiki summary.
0
votes
1answer
130 views
Problem with different query loops (and “main loop”) on category template page!
so, heres the problem:
i've created a category-template (category.php) with two query loops and the main loop (in which the content from the category should get looped in). if i now click on a ...
0
votes
1answer
51 views
Loop being strainge
So I hacked together a function that does the following:
protected function _query_post($query){
$original = $this->_wp_query;
$wp_query = new WP_Query($query);
...
2
votes
1answer
279 views
Is it necessary to reset the query after using get_posts()?
Is it necessary to reset the query after using get_posts() ?
I have been looking at this page and I don't see any reference to get_posts() ... I can't make it out for sure from this page either.
I ...