Wordpress - 使用查询字符串值更新标题中的所有菜单链接

Posted

技术标签:

【中文标题】Wordpress - 使用查询字符串值更新标题中的所有菜单链接【英文标题】:Wordpress - Update ALL menu links in header with querystring value 【发布时间】:2012-11-14 23:46:15 【问题描述】:

我正在尝试使用 wordpress 来复制网站...因此,当查看者来到 http://www.wpsite.com/1005 时,我会(通过 API)检查 id 是否是有效/活跃的代表,然后为常用的东西(姓名、电子邮件、repid)设置一个 cookie 并重定向到主页:

http://www.wpsite.com/wp/?page_id=34&id=1005

我目前拥有所有这些功能。

所以此时,我想将“id=1005”传递给页面顶部的所有菜单链接。我的网站正在使用 wordpress 中的外观 -> 菜单功能来构建菜单...

因此,当查看者悬停/点击网站上的任何链接时,我希望将“&id=1005”添加到其中。那可能吗?如果用户无效并且没有“&id=1005”怎么办?谢谢。

亚当

更新:好的,我创建了一个 walker 类,但我仍然很困惑将查询字符串“id”值放在哪里,以便它显示在每个类中:

// Walker Nav Menu
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 = '<b>';
       $append = '</b>';
       $description  = ! empty( $item->description ) ? '<span>'.esc_attr( $item->description ).'</span>' : '';
       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 );
 

我感觉它在“属性”部分......带有那些三级表达式的东西......就像“如果 id not ''”添加这个......但我错过了它......

感谢任何帮助。

亚当

【问题讨论】:

【参考方案1】:

没有可用于修改 href 属性的过滤器。为此,您需要创建一个custom walker。并建立自己的菜单。这并不难。

更多信息:

example tutorial

【讨论】:

您好 janw,非常感谢您提供的链接!这是有人只需要告诉你你不能按照你想要的方式做的事情之一:)我会试一试并分享我的结果。再次感谢! 有可能,试一试,当你遇到困难时告诉我。忠告,如果可能的话,将 id 重命名为更完整的名称 感谢您的帮助!我创建了一个walker,但我仍然对将查询字符串“id”值连接到哪里感到困惑......添加了上面的代码。 对于查看此内容的其他人...如果您使用的不是 wordpress 股票模板,他们很可能有一个自定义 walker 文件...我的位于 theme-function.php 中。 .

以上是关于Wordpress - 使用查询字符串值更新标题中的所有菜单链接的主要内容,如果未能解决你的问题,请参考以下文章

PHP wordpress 中的一次查询中的双重 MySQL 查询

Wordpress - 过滤搜索查询以排除 postmeta 值

使用 jQuery 更新现有的 URL 查询字符串值

如何从 wordpress 的更新配置文件选项中获取密码字符串?

获取Wordpress查询中的所有类别,自定义字段值?

PHP - Wordpress - 插件小部件更新功能 - 更新数组值 [Foreach 循环不起作用]