-1

wp ページを含む div をアンカーのメニューに挿入する必要があります。アンカー メニューの 1 つに、5 つのリンクを含むサブメニューがあります。これらの各リンクには、ページ (wp ページ) が含まれています。

私はこの投稿に従いました: http://bit.ly/MIRtcY しかし、これは特定の情報源ではなく、欲しいものを入手するのに問題があります。

特定の URL またはいくつかの提案はありますか?

ありがとう。

4

1 に答える 1

0

私はさまざまな解決策を試しましたが、今は walker nav メニューで作業しています。これはコードです:

  // Class to insert div and page into nav menu (not working yet)
 class description_walker extends Walker_Nav_Menu
  {
  function start_el(&$output, $item, $depth, $args)
  {
       global $wp_query;
       $indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';

       $class_names = $value = '';

       $classes = empty( $item->classes ) ? array() : (array) $item->classes;

       $class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item ) );
       $class_names = ' class="'. esc_attr( $class_names ) . '"';

       $output .= $indent . '<li id="menu-item-'. $item->ID . '"' . $value . $class_names .'>';

       $attributes  = ! empty( $item->attr_title ) ? ' title="'  . esc_attr( $item->attr_title ) .'"' : '';
       $attributes .= ! empty( $item->target )     ? ' target="' . esc_attr( $item->target     ) .'"' : '';
       $attributes .= ! empty( $item->xfn )        ? ' rel="'    . esc_attr( $item->xfn        ) .'"' : '';
       $attributes .= ! empty( $item->url )        ? ' href="'   . esc_attr( $item->url        ) .'"' : '';

       // $prepend = '<strong>';
       // $append = '</strong>';
       $description  = empty( $item->description ) ? '<div class="dropEverything-page"><div class="dropEverything-row">'.esc_attr( $item->description ).'</div></div>' : '';

       if($depth != 0)
       {
                 $description = $append = $prepend = "";
       }

        $item_output = $args->before;
        $item_output .= '<a'. $attributes .'>';
        $item_output .= $args->link_before .$prepend.apply_filters( 'the_title', $item->title, $item->ID ).$append;
        $item_output .= $description.$args->link_after;
        $item_output .= '</a>';
        $item_output .= $args->after;

        $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );
        }
 }

この行を変更しました:

       // I need to get the ID of the page and put it into the anchor
       $postID = get_page_by_title("Profile")->ID;
   $post = get_post(&$postID);
       $description  = empty( $item->description ) ? '<div class="dropEverything-page"><div class="dropEverything-row">'.esc_attr( $item->description ).'</div></div>' : '';

代用する必要があります

esc_attr( $item->description )

esc_attr( echo apply_filters("the_content", $post->post_content) )

しかし、ウェブサイトは私に空白のページを返します。

なにか提案を?ありがとう

于 2012-08-22T16:46:42.497 に答える