Broken pagination
I see a few issues that are probably contributing to your issue: Only ever use query_posts() to modify the primary Loop. The caller_get_posts parameter has been deprecated, in favor of ignore_sticky_posts The $wp_query variable is a defined global. Using it outside of its intended use may cause unintended circumstances. So, first, you need to determine … Read more