<div class="column-one"> <?php $args = array( 'order' => 'DESC', 'post_type' => 'sv_resume', ); $resume_details = new WP_Query(); $resume_details->query( $args ); while ($resume_details->have_posts()) : $resume_details->the_post(); ?> <h3>Objective</h3> <div class="content"><?php the_content(); ?></div> <?php endwhile; ?> </div> <div class="column-two"> <h3><?php _e( 'Education', 'sparkle-vitae'); ?></h3> <?php $args = array( 'order' => 'DESC', 'post_type' => 'sv_schools', ); $resume_schools = new WP_Query(); $resume_schools->query( $args ); ?> <ul> <?php while ($resume_schools->have_posts()) : $resume_schools->the_post(); $sv_school_meta = get_post_custom( $post->ID ); //var_dump( $sv_job_meta ); ?> <li class="school-listing"> <span class="school"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></span> <p class="school-major"><?php echo $sv_school_meta['sv_school_degree'][0] . ' in ' . $sv_school_meta['sv_school_major'][0] . ', ' . $sv_school_meta['sv_school_end_date'][0]; ?> </li> <?php endwhile; ?> </ul> </div>