你好Wordpress大师,
我遇到了一个问题。标题中有我的父页。页面中的php和子页面。php。当我单击父页面中的一个子页面时,我希望父页面保持活动状态。我怎样才能做到这一点?
在我的标题中。php我有以下代码:
<ul id="mainNav">
<?php wp_list_pages(\'sort_column=menu_order&exclude=2&depth=1&title_li=\'); ?>
</ul>
第页。php
<?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) { ?>
<div id="subPages">
<ul>
<li class="root"><?php echo \'<a href="\'.get_permalink($post->post_parent).\'">\'.get_the_title($post->post_parent).\'</a>\';?></li>
<?php echo $children; ?>
</ul>
</div>
<?php } else { ?>
<?php } ?>
您可以看到以下示例:
here 当您单击其中一个子页面时,我希望父页面(上面的选项卡)保持活动状态。
tnx代表预付款。