Title: strat435's Replies | WordPress.org

---

# strat435

  [  ](https://wordpress.org/support/users/strat435/)

 *   [Profile](https://wordpress.org/support/users/strat435/)
 *   [Topics Started](https://wordpress.org/support/users/strat435/topics/)
 *   [Replies Created](https://wordpress.org/support/users/strat435/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/strat435/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/strat435/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/strat435/engagements/)
 *   [Favorites](https://wordpress.org/support/users/strat435/favorites/)

 Search replies:

## Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Tracks] 1.30.3 breaks certain plugins](https://wordpress.org/support/topic/1303-breaks-certain-plugins/)
 *  Thread Starter [strat435](https://wordpress.org/support/users/strat435/)
 * (@strat435)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/1303-breaks-certain-plugins/#post-5449659)
 * Thanks so much!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [displaying subpages on a page using different templates](https://wordpress.org/support/topic/displaying-subpages-on-a-page-using-different-templates/)
 *  Thread Starter [strat435](https://wordpress.org/support/users/strat435/)
 * (@strat435)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/displaying-subpages-on-a-page-using-different-templates/#post-4657523)
 * After some investigating, I was able to figure out when using `'post_parent' 
   => 'id'` you also need to use `'post_type' => 'page'`. Adding that additional
   argument allowed me to display those pages.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [displaying subpages on a page using different templates](https://wordpress.org/support/topic/displaying-subpages-on-a-page-using-different-templates/)
 *  Thread Starter [strat435](https://wordpress.org/support/users/strat435/)
 * (@strat435)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/displaying-subpages-on-a-page-using-different-templates/#post-4657439)
 * Thanks! So using this [Query Generator](http://generatewp.com/wp_query/) I’m 
   trying out the following code:
 *     ```
       <?php
   
       $args = array (
       	'post_parent'            => '70',
       	'order'                  => 'ASC',
       	'orderby'                => 'menu_order'
       );
   
       // The Query
       $query = new WP_Query( $args );
   
       // The Loop
       if ( $query->have_posts() ) {
       	while ( $query->have_posts() ) {
       		$query->the_post();
       		?>
       		<div class="content-front-page-i-cont" id="<?php echo the_title(); ?>">
       				<?php the_content(); ?>
       			</div>
       		<?php
       	}
       } else {
       	?>No posts found<?php
       }
   
       // Restore original Post Data
       wp_reset_postdata();
   
       ?>
       ```
   
 * This doesn’t retrieve any posts. If I do `page_id` instead of `post_parent` I
   can retrieve the parent page. I double checked and there are several pages that
   are using the queried page as a parent.

Viewing 3 replies - 1 through 3 (of 3 total)