-1

我需要在锚的菜单中插入一些包含 wp 页面的 div。锚菜单之一有一个包含 5 个链接的子菜单。这些链接中的每一个都包含一个页面(wp page)。

我关注了这篇文章:http ://bit.ly/MIRtcY 但不是一个特定的来源,我在获得我想要的东西时遇到了一些问题。

你有具体的网址或一些建议吗?

谢谢。

4

1 回答 1

0

我尝试了不同的解决方案,现在我使用 walker nav menu。这是代码:

  // 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 回答