Açtığım bir sayfa içerisinde alt sayfaların gösterilmesi için şu kodu kullanıyorum:
<?php if ( have_posts() ) { /* Query and display the parent. */
while ( have_posts() ) {
the_post();
the_content();
$thispage=$post->ID;
}
} ?>
<?php $childpages = query_posts('post_per_page=3&orderby=post_date&order=desc&post_type=page&post_parent='.$thispage);
if($childpages){ /* display the children content */
foreach ($childpages as $post) :
setup_postdata($post); ?>
<ul>İÇERİK KODLARINI BURAYA YAZDIM</ul>
<?php
endforeach;
} ?>Fakat 3 ten sonra sayfalama işlemi gerçekleşmiyor. Bir fikri olan varmı ?