主要来自https://stackoverflow.com/questions/7118823/check-if-url-has-certain-string-with-php
检查url是否有你的字符串,然后根据它吐出不同的内容。也许有点像。。。
$url = \'http://\' . $_SERVER[\'SERVER_NAME\'] . $_SERVER[\'REQUEST_URI\'];
if (false !== strpos($url,\'forms.woo.com\')) {
echo \'?pageurl=\' . home_url() . get_the_ID(); // there\'s your page id url
} else {
the_permalink(); // plain old permalink
}