Before your local query, save $wp_query, then restore it after, like this:
$temp_query = clone $wp_query;
// Do your own stuff here;
$wp_query = clone $temp_query;
See if that helps.
Blogging Extreme.com ★ The Location For Learning Extreme Blogging ★
Before your local query, save $wp_query, then restore it after, like this:
$temp_query = clone $wp_query;
// Do your own stuff here;
$wp_query = clone $temp_query;
See if that helps.
Sign Up To Receive Breaking News &
Receive Other Site Updates By E-Mail !