【ndc】项目的菜单从新编写【wordpress】

需求:(奇怪)

进入南方的时候,爱工做和一块儿来显示的是南方的(南北方的me和爱生活是同样的)
进入北方的时候,爱工做和一块儿来显示的是北方方的(南北方的me和爱生活是同样的)php

解决

  1. 使用url中的querystring 加入 position=north;position=south;
  2. 修改菜单代码,custom-menu.class.php 264 lines 加入如下代码;

$pos = (get_query_var('position')) ? get_query_var('position') :
'north';
$item->url = add_query_arg( array( 'position'=>$pos ) , $item->url);url

  1. 在首页文件中 加入querystring;
相关文章
相关标签/搜索