Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Ummmm yeaaah.

I'm working on a Wordpress eCommerce site. Want to have a top level parent page called "Shop" with Child pages: "Product Type 1", "Product Type 2", Product Type 3".

Each of the three second level children will have a long list of products (as third level children).

Here is my issue: When the top level "Shop" page is selected, I want to query ALL of the grandchildren. I also want to exclude the second level children from the list...those pages only exist as templates and for SEO reasons.

Here is what I've used in the past when calling child pages:

query_posts("post_parent=48&post_type=page&orderby=title&order=asc");

Where post_parent=48 is the top level page's ID. Any suggestions?

share|improve this question
1  
see this page wordpress.org/support/topic/… especially the comments below. – rncrtr Jan 18 '12 at 0:11

2 Answers

This is what i ended up doing for this, works great for my situation:

if ( (is_page('Shop')) or (is_page('Product Type 1')) ) {

query_posts("showposts=100&post_parent=34&post_type=page&orderby=title&order=asc");

while(have_posts()) {

the_post(); // vital 

Where post_parent=34 is the post ID of Product Type 1. Then:

wp_reset_query(); 

if ( (is_page('Shop')) or (is_page('Product Type 2')) ) {

query_posts("showposts=100&post_parent=48&post_type=page&orderby=title&order=asc");

while(have_posts()) {

the_post(); // vital 

Where post_parent=48 is the post ID of Product Type 2...And so forth for all Product Types.

Not sure if this is the Best way of setting this up, but was pretty simple and...it works ;)

share|improve this answer

I know this post is well over a year old but did you ever find an soluton to what you were trying to achieve? I have the same problem. On a separate page I want to list all the grandchild pages of my shop page which are located in various child pages.

Shop

  • Child Page
  • Grandchild Page
  • Grandchild Page
  • Grandchild Page
  • Child Page
  • Grandchild Page
  • Grandchild Page
  • Grandchild Page
  • Child Page
  • Grandchild Page
  • Grandchild Page
  • Grandchild Page

Although I have managed to work around the issue in various ways which usually entails persuading the client to do it differently, it has cropped up many times and I would really appreciate if you could point me in the right direction or better yet the solution.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.