<?php
if($post->post_parent)
$children = wp_list_pages("title_li=&child_of=".$post->post_parent."&echo=0");
else
$children = wp_list_pages("title_li=&child_of=".$post->ID."&echo=0");
if ($children) {
$parent_title = get_the_title($post->post_parent);?>
<li><a href="<?php echo get_permalink($post->post_parent) ?>"><?php echo $parent_title;?></a></li>
<?php echo $children; ?>
<?php } ?>
上面的代码在一个列表中列出了父页面和所有子页面。
父页面
子页面
子页面 class="active"
子页面
子页面
我想在当前活动页面中添加一个“活动”类。任何帮助是极大的赞赏。谢谢