最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
WORDPRESS参数传递和路由规则的例子
时间:2022-06-25 18:43:55 编辑:袖梨 来源:一聚教程网
WordPress添加路由规则函数add_rewrite_rule,使用示例:
PHP
add_rewrite_rule( 'haha/([A-Za-z0-9]{1,})/?$','index.php?page_id=8&myname=$matches[1]', 'top' );
这样url www.xx.com/haha/tuntun ,实际上就会访问 /index.php?page_id=8&myname=tuntun
但是在WP中这样的url通过$_GET[‘myname’]是得不到你想要的值的,如果想通过$_GET[‘myname’]得到值,需要添加参数传递规则,使用query_vars的filter过滤器:
PHP
//add query_args
function add_query_vars($aVars) {
$aVars[] = 'myname';
return $aVars;
}
add_filter('query_vars', 'add_query_vars');
系统默认自带的参数,不需要额外添加。
相关文章
- 《彩色点点战争》推图常用三大主c玩法详解 01-23
- 《燕云十六声》池鱼林木任务攻略 01-23
- 《大连地铁e出行》查看行程记录方法 01-23
- 《明日方舟》2025春节限定干员余角色介绍 01-23
- 《崩坏:星穹铁道》万敌光锥搭配攻略 01-23
- 《燕云十六声》一药千金任务攻略 01-23