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

时间:2011-03-31 作者:Raiman Au

我目前正在使用自定义walker自定义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。

有什么建议吗?

3 个回复
最合适的回答,由SO网友:Jan Fabry 整理而成

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

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

SO网友:Tahtu

这个PAGEID 在中可用$item->object_id, 如果$item->objectpage.

$item->object 包含菜单项的类型。可能的值为page,post,category,...

$item->object_id 包含对象的ID。

我是在var_dump($item) 在WordPress 5.4.2上。

SO网友:Serdar Buyuktemiz

我无法深入查看您的代码,但要创建菜单,可能您应该使用get\\u页面。。

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;
  }
 ?>

结束

相关推荐

如何将管理菜单“Pages”更改为其他选项

创建自定义帖子类型时,您可以定义与该帖子类型相关的各种元素,这些元素基本上允许您定义菜单标题、“添加新帖子”文本等内容。我想弄清楚的是我需要向函数中添加什么代码。php文件,以便我可以为wordpress添加的现有“默认”帖子类型设置这些内容。例如,让我们假设我想将“页面”帖子类型更改为“主要部分”。目前我所做的是使用以下代码:add_filter( \'gettext\', \'change_admin_menu_pages\' ); add_filter( \'ngettext\', \'ch