Wordpress二级菜单子页
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpress二级菜单子页相关的知识,希望对你有一定的参考价值。
This is what I wanted: I had a structure like this: -Artist --Peter Miller ---Pictures ---Press ---Videos and wanted to have the sub-sub-Menu when located on the "Peter Miller"-Page. So that on "Peter Miller" you'd have "Pictures, Press and Videos"-Menu and also on the sibling pages but not on Artists-Page!
<?php global $wp_query; { $parent = $wp_query->post->ID; } else { $parent = $wp_query->post->post_parent; } ?> <?php if(wp_list_pages("title_li=&child_of=$parent&echo=0" )): ?> <ul class="submenus"> <?php wp_list_pages("title_li=&child_of=$parent" ); ?> </ul> <?php endif; ?>
以上是关于Wordpress二级菜单子页的主要内容,如果未能解决你的问题,请参考以下文章