始终将参数添加到URL WordPress

时间:2014-12-12 12:51:25

标签: wordpress url redirect parameters

我正在使用WordPress发布游戏和应用。现在我想检测国家以显示帖子。

有没有办法将默认参数添加到url中:

  

http://demo.com/?geo=VN

     

http://demo.com/?category/games/?geo=VN

1 个答案:

答案 0 :(得分:0)

您可以使用geoplugin等插件。

只需在索引中添加所需的代码即可。

看起来应该是这样的:

<?php
require_once('geoplugin.class.php');
$geoplugin = new geoPlugin();
$geoplugin->locate();
// create a variable for the country code
$var_country_code = $geoplugin->countryCode;
// redirect based on country code:
if ($var_country_code == "VN") {
header('Location: http://demo.com/?geo=VN');
}
else if ($var_country_code == "AU") {
header('Location: http://demo.com/?geo=AU');
}
else {
header('Location: http://demo.com/');
}
?>