web-dev-qa-db-ja.com

WordPress 3.0の新しいメニュー機能でwp_list_pages()を使って子ページを表示するメニューを生成しますか?

以前は、次のようなロジックを使用して、現在選択されている親ページの子ページを選択的に読み込むことができました。

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) { ?>
   <ul id="subnav">
     <?php echo $children; ?>
   </ul>
<?php 
} else {
}

新しいregister_nav_menus()/ wp_nav_menu()機能を使用してこれを行うためのネイティブな方法はないようです。現時点でどのようにしてこれにパッチをあてることができるのでしょうか。

これが私が達成しようとしていることのスクリーンショットです。

Drop down Child menu screenshot

10
ZaMoose

私は私のために働いているPage Sub Navigation(私が知っていることを知っている)という名前のウィジェットを作成しました。

これをインストールすれば、ウィジェットを自分のウィジェット領域の1つにドラッグするだけで、BAMで動作します。

<?php
/*
Plugin Name: Page Sub Navigation
Plugin URI: http://codegavin.com/wordpress/sub-nav
Description: Displays a list of child pages for the current page
Author: Jesse Gavin
Version: 1
Author URI: http://codegavin.com
*/

function createPageSubMenu()
{
  if (is_page()) {
    global $wp_query;

    if( empty($wp_query->post->post_parent) ) {
      $parent = $wp_query->post->ID;
    } else {
      $parent = $wp_query->post->post_parent;
    }

    $title = get_the_title($parent);

    if(wp_list_pages("title_li=&child_of=$parent&echo=0" )) {
      echo "<div id='submenu'>";
      echo "<h3><span>$title</span></h3>";
      echo "<ul>";
      wp_list_pages("title_li=&child_of=$parent&echo=1" );
      echo "</ul>";
      echo "</div>";
    }
  }
}


function widget_pageSubNav($args) {
  extract($args);
  echo $before_widget;
  createPageSubMenu();
  echo $after_widget;
}

function pageSubMenu_init()
{
  wp_register_sidebar_widget("cg-sidebar-widget", __('Page Sub Navigation'), 'widget_pageSubNav');
}
add_action("plugins_loaded", "pageSubMenu_init");
?>

それともあなたがただジューシーな部分が欲しいなら...

if (is_page()) {
  global $wp_query;

  if( empty($wp_query->post->post_parent) ) {
    $parent = $wp_query->post->ID;
  } else {
    $parent = $wp_query->post->post_parent;
  }

  if(wp_list_pages("title_li=&child_of=$parent&echo=0" )) {
    wp_list_pages("title_li=&child_of=$parent&echo=1" );
  }
}

更新

私は本質的に同じことをする別のプラグインを見つけました(そしておそらくそれをもっと上手くします、私は知りません)。 http://wordpress.org/extend/plugins/subpages-widget/ /

9
jessegavin

あなたはこれをするためにCSSハックをすることができます(私が試みる2つの方法)

1これは私が考えることができる最も簡単な方法ですcssにサブナビゲーションの項目を表示させることです。

.current-menu-ancestor ul {display:inline;}
.current-menu-parent ul (display:inline;}

2あなたのテーマがボディクラスをサポートしていると仮定すると、それぞれの "sub nav"に対してナビゲーションメニューを作成し、それらをメインナビゲーションの下に表示するように設定することができます。

.child-menu-about, .child-menu-leadership {display:none;}
body.page-id-YOUR_ABOUT_PAGE_ID .child-menu-about {display:inline;}
body.category-YOUR-CATEGORY-SLUG  .child-menu-leadership {display:inline;}
3
rfair404
<nav class="site-nav children-link">
                <?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) { ?>
                       <ul>

                            <?php echo $children; ?>

                       </ul>

                    <?php 
                        } else {
                        }
                ?>
        </nav>

CSS

/*children-links links*/

.children-link 
{       

        background-color: #1a5957;
        color:#FFF;
        font-size: 100%;

}

.children-link li
{
    margin: 10px;   


}

.children-link ul li a:link,
.children-link ul li a:visited 
{
        padding: 15px 17px;
        text-decoration: none;
        border: 1px solid #1a5957;

}
.children-link ul li a:hover 
{
        background-color: #1a5957;
        color:#FFF;
        font-weight: bold;

}
.children-link .current_page_item a:link,
.children-link .current_page_item a:visited
{

    background-color: #1a5957;
    color: #FFF;
    cursor: default;
}
0
maulik

enter image description here  1これはphpの表示です。

enter image description here  2これはCSS表示です。

0
maulik