Pagination not working
As I already stated in comments, you should never use query_posts, only use query_posts if you are intended to break your page functionalities. Add query_posts to the very top of your EVIL LIST. query_posts breaks the main query object, the very object that your pagination function relies on. Your pagination function relies on the $max_num_pages … Read more