'page', 'page_id' => $home_paralax_content_page ); // The Query $query = new WP_Query( $args ); // The Loop if ( $query->have_posts() ) { while ( $query->have_posts() ) { $query->the_post(); the_content(); } } // Restore original Post Data wp_reset_postdata(); ?>

'page', 'page_id' => $home_secondary_content_page ); // The Query $query = new WP_Query( $args ); // The Loop if ( $query->have_posts() ) { while ( $query->have_posts() ) { $query->the_post(); the_content(); } } // Restore original Post Data wp_reset_postdata(); ?>