WP_Query $gallerypage->the_post() giving Undefined offset: 0

Hi @JM at Work:

Try wrapping $gallerypage->the_post(); with if ($gallerypage->have_posts()): ... endif;

It should look like this:

if ($gallerypage->have_posts()):
  $gallerypage->the_post();
endif; 

See: