Displaying WordPress childpages with thumbnails

Here’s a little bit of code to display WordPress Childpages in an undordered list including their thumbnail image. <ul class="sub_pages"> <?php $args = array( 'post_parent' => $post->ID, 'post_type' => 'page', 'post_status' =>...

Pagination with a custom wp_query

So I was using a fairly normal WP_query, along the lines of <?php $query = new WP_Query (array(''posts_per_page=>'6','post_status'=>'published','orderby'=>'menu_order','order'=>'ASC','paged'=>'paged')); ?> But for some reason pagination was not...