我正在尝试建立一个10页中第一个子页的列表。
因此,我的页面结构如下:
第A页第A1页第C2页第C3页,我想在我的模板中显示此列表:
A1页
B1页C1页 <?php
$args=array(
\'post_type\' =>\'page\',
\'showposts\' =>10
);
$my_query = new WP_Query($args);
if( $my_query->have_posts() ) { ?>
<ul>
<?php while ($my_query->have_posts()) : $my_query->the_post(); ?>
<?php
$children = wp_list_pages(\'title_li=&child_of=\'.$id.\'&echo=0\');
$pieces = explode(\'"\', $children);
<-- STUFF GOES HERE? -->
?>
<?php endwhile; ?>
</ul>
<?php } //if ($my_query)
wp_reset_query(); // Restore global post data stomped by the_post(). ?>
我想我需要一个for循环来只显示第一篇文章,但我的php知识还不够,所以我有点卡住了。有人想快速回答吗?