我有一个这样的页面结构。
Portfolio
- Residential
- - Resident 1
- - Resident 2
- - Resident 3
- Commercial
- - Commercial 1
- - Commercial 2
- - Commercial 3
孙辈页面居民1-商业3有帖子缩略图
我有一个投资组合页面的模板,我想在其中显示“住宅”和“商业”页面及其子页面,如下图所示。
<div class="grid">
<h2>Residential</h2>
<ul>
<li> Resident 1 post_thumbnail </li>
<li> Resident 2 post_thumbnail </li>
<li> Resident 3 post_thumbnail </li>
</ul>
</div>
<div class="grid">
<h2>Commercial</h2>
<ul>
<li> Commercial 1 post_thumbnail </li>
<li> Commercial 2 post_thumbnail </li>
<li> Commercial 3 post_thumbnail </li>
</ul>
</div>
我正在使用get\\u页面,并创建了“住宅”和“商业”分区
<?php
$portfolio_sections = array(
\'post_type\' => \'page\',
\'child_of\' => $post->ID,
\'sort_column\' => \'menu_order\',
\'sort_order\' => \'ASC\',
\'parent\' => $post->ID
);
$sections = get_pages($portfolio_sections);
foreach($sections as $section){
?>
<div class="grid">
<h2><?php echo $section->post_title; ?></h2>
//Create Child pages
</div><!--.grid-->
<?php
}
?>
我的问题是在“ul”列表中创建子页面
我尝试使用第二个foreach循环,但这不起作用,我不知道这是否是正确的方法
<?php
$portfolio_sections = array(
\'post_type\' => \'page\',
\'child_of\' => $post->ID,
\'sort_column\' => \'menu_order\',
\'sort_order\' => \'ASC\',
\'parent\' => $post->ID
);
$sections = get_pages($portfolio_sections);
foreach($sections as $section){
?>
<div class="grid">
<h2><?php echo $section->post_title; ?></h2>
<ul class="imageGrid">
<?php
$portfolio_pages = array(
\'post_type\' => \'page\',
\'child_of\' => $section->ID,
\'sort_column\' => \'menu_order\',
\'sort_order\' => \'ASC\',
\'parent\' => $section->ID
);
$pages = get_pages($portfolio_pages);
foreach($pages as $page){
?>
<li><a href="<?php echo get_the_permalink($page->ID);?>"><?php echo get_the_post_thumbnail($page->ID, "thumbnail"); ?><span><?php echo get_the_title($page->ID);?></span></a></li>
<?php
}
?>
</ul>
</div><!--.grid-->
<?php
}
?>
---更新----
我想要的结构。每个ul列表周围的div
<div class="grid">
<h2>Residential</h2>
<ul>
<li> Resident 1 post_thumbnail </li>
<li> Resident 2 post_thumbnail </li>
<li> Resident 3 post_thumbnail </li>
</ul>
</div>
<div class="grid">
<h2>Commercial</h2>
<ul>
<li> Commercial 1 post_thumbnail </li>
<li> Commercial 2 post_thumbnail </li>
<li> Commercial 3 post_thumbnail </li>
</ul>
</div>
代码中的结构是一个围绕div的结构。
<div class="grid">
<h2>Residential</h2>
<ul>
<li> Resident 1 post_thumbnail </li>
<li> Resident 2 post_thumbnail </li>
<li> Resident 3 post_thumbnail </li>
</ul>
<h2>Commercial</h2>
<ul>
<li> Commercial 1 post_thumbnail </li>
<li> Commercial 2 post_thumbnail </li>
<li> Commercial 3 post_thumbnail </li>
</ul>
</div>