我有以下代码:
add_filter('frm_get_default_value', 'my_custom_default_value_nrt', 10, 2);
function my_custom_default_value_nrt($new_value, $field){
if(empty($new_value))
if($field->id == 5859){ //change 5859 to the ID of the field
$get_url = $_SERVER['HTTP_REFERER']; //stores the value of the referring URL
$parse = parse_url($get_url); //parses the referring URL
$new_value = $parse['host']; //stores the domain value of the referring URL
}
return $new_value;
}
上面的代码只返回上一页的引用 URL 的域。我希望能够返回原始引用域。
我发现下面的例子可能会做我想做的事,但是作为一个 PHP 菜鸟,我对如何将它实现到我所拥有的东西中有点迷茫。
解决这个问题的最佳方法是什么?