• Hello there. i’m trying to display all children pages in parent page. but after adding more than 132 child page, parent page is not display any post. i’m using WordPress 3.4.1. link to my files

Viewing 1 replies (of 1 total)
  • To help debug, add this code after the $pages = new WP_Query line in loop-children.php:

    printf( '<!-- debugging child pages: %s -->',
    	print_r( array(
    		'args'     => apply_filters( 'graphene_child_pages_args', $args ),
    		'children' => $pages->posts,
    		'parent'   => $post,
    		'sql'      => $pages->request
    	), true )
    );

    Then view the source of a page that you know has child pages and put the <!-- debugging child pages: through --> in a pastebin.com and then post the link here.

Viewing 1 replies (of 1 total)

The topic ‘child page limit count’ is closed to new replies.