我需要在锚点菜单中插入一些包含wp页面的div。 其中一个锚点菜单有一个包含5个链接的子菜单。每个链接都包含一个页面(wp页面)。
我关注了这篇文章:http://bit.ly/MIRtcY 但这不是一个特定的来源,我有一些问题需要获得我想要的东西。
您有特定的网址或一些建议吗?
感谢。
答案 0 :(得分: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) )
但该网站给我一个空白页。
有什么建议吗? 感谢