我正在使用WordPress发布游戏和应用。现在我想检测国家以显示帖子。
有没有办法将默认参数添加到url中:
答案 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/');
}
?>