获取菜单项链接到的页面的ID?


9

我目前正在使用自定义漫游器来自定义的输出wp_nav_menu(),并且正在尝试将其他信息添加到<a>标签中。

我希望每个菜单链接的输出看起来像是:

<a class="boxPAGEID" href="#">About Me Page</a>

PAGEID我链接到的页面的ID 在哪里。

原因是因为我正在开发一个主题,该主题可在灯箱中打开页面内容,这些内容由标记中的类触发。

以下是functions.php文件中自定义行者的代码(在代码之后,我将指向出现问题的区域):

class description_walker extends Walker_Nav_Menu
{

      function start_el(&$output, $item, $depth, $args)
      {
           global $wp_query;     
           $pageid = $wp_query->post->ID;

           $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="'   . '#' .'"' : '';

           $prepend = '<strong>';
           $append = '</strong>';
           $description  = ! empty( $item->description ) ? '<span>'.esc_attr( $item->description ).'</span>' : '';

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

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

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

            if ($item->menu_order == 1) {
                $classes[] = 'first';
            }

            }
}

在结尾处有几行以开头$item_output。第二行是我要生成页面ID的位置:

$item_output .= '<a'. $attributes . 'class="box' . $pageid . '"' .'>';

哪里$pageid根据:

global $wp_query;    
$pageid = $wp_query->post->ID;

这为我生成的所有链接提供了一个固定的ID。

或者,不是$pageid我尝试使用$item->ID,而是给了我菜单项的ID。

有什么建议么?


如果页面ID有替代方法,那也可以。我最初尝试使用$ item-> url,但是url不能用作类名。只有在没有空格且默认情况下不生成其他属性的情况下,页面标题才有效。
雷曼Au

Answers:


23

页面ID(或对象ID,因为菜单项可以链接到任何对象)postmeta用键存储在表中_menu_item_object_id。因此,您可以使用以下代码获取页面ID:

get_post_meta( $item->ID, '_menu_item_object_id', true );

简!!!!! 做到了!对不起,您的回复很晚,但是您的建议成功了!你真棒!谢谢!对于那些不确定该怎么办的记录:我$pageid = $wp_query->post->ID;将页面顶部的更改为$pageid = get_post_meta( $item->ID, '_menu_item_object_id', true );
Raiman Au

@Jan Fabry:太棒了!它节省了我的时间。
桑杰·卡特里

-1

我无法深入查看您的代码,但是要创建菜单,也许应该使用get_pages。

http://codex.wordpress.org/Function_Reference/get_pages

<?php 
  $pages = get_pages(); 
  foreach ($pages as $pagg) {
    $option = '<a class="box' . $pagg->ID . '" href="#">';
    $option .= $pagg->post_title;
    $option .= '</a>';
    echo $option;
  }
 ?>

感谢您的建议,塞尔达!不幸的是,这是行不通的,因为我需要菜单能够从管理面板的外观>菜单部分进行控制!这就是为什么我使用wp_menu_nav而不是get_pages的原因。
Raiman Au
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.