将子菜单添加到Wordpress主题

时间:2010-09-15 20:19:46

标签: php wordpress wordpress-theming

我想在我的主题中添加一个wordpress菜单的子菜单。我想使用Wordpress 3.0的wp_nav_menu函数。换句话说,我希望看到子菜单不是子页面,这意味着wp_list_pages不是正确的功能,因为我想要子菜单而不是子页面。

让我们假设菜单结构如下:

  • 主页
  • 条目1
    • Entry3
    • Entry4
  • ENTRY2
    • Entry5
    • Entry6

我希望如果有人点击Entry1(并使其成为父级),主题只显示此条目的子菜单。在Entry1的情况下,它是:

  • Entry3
  • Entry4

我知道有这样的代码:

<?php 
    $children = ($post->post_parent) ? wp_list_pages('title_li=&child_of='.$post->post_parent.'&echo=0') : wp_list_pages('title_li=&child_of='.$post->ID.'&echo=0'); 
    if($children) { echo('<ul>'.$children.'</ul>'); } 
 ?> 

然而,关键是我在谈论菜单结构而页面结构。哦,深度参数不起作用,因为这意味着,而不是来自

我认为可能有自定义助行器的解决方案,但我不知道如何实现它。

wp_nav_menu的函数参考 http://codex.wordpress.org/Template_Tags/wp_nav_menu

我正在寻找这个问题的解决方案,所以请帮助我。非常感谢。

3 个答案:

答案 0 :(得分:0)

这应该有帮助:来自http://www.svennerberg.com/2009/02/creating-a-submenu-in-wordpress/

<?php
$has_subpages = false;
// Check to see if the current page has any subpages
$children = wp_list_pages('&child_of='.$post->ID.'&echo=0');
if($children) {
    $has_subpages = true;
}
// Reseting $children
$children = "";

// Fetching the right thing depending on if we're on a subpage or on a parent page (that has subpages)
if(is_page() && $post->post_parent) {
    // This is a subpage
    $children = wp_list_pages("title_li=&include=".$post->post_parent ."&echo=0");
    $children .= wp_list_pages("title_li=&child_of=".$post->post_parent ."&echo=0");
} else if($has_subpages) {
    // This is a parent page that have subpages
    $children = wp_list_pages("title_li=&include=".$post->ID ."&echo=0");
    $children .= wp_list_pages("title_li=&child_of=".$post->ID ."&echo=0");
}
?>
<?php // Check to see if we have anything to output ?>
<?php if ($children) { ?>
<ul class="submenu">
    <?php echo $children; ?>
</ul>
<?php } ?>

答案 1 :(得分:0)

一种解决方案是在页面上放置另一个wp_nav_menu函数并修改css以隐藏非活动菜单项。

答案 2 :(得分:0)

为了使其工作,我必须在加载页面后立即隐藏.sub菜单。然后,通过定位“.current_page_item .sub-menu”

来仅显示相关的子菜单
$(document).ready(function() {
        $(".sub-menu").hide(); // hide the submenu on page load
    $(".current_page_item .sub-menu").show();
)};