Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个托管在我的网站 (http://www.mysite.com/blog) 中的 WordPress 博客,我的网站本身基于 ASP.NET。
我在会话开始时跟踪 ASP.NET 中的引用者并将它们存储在会话变量中,以便在会话过期或访问者转换为成员之后保存到我的数据库中。
如何跟踪首先访问博客并单击网站内页面链接的访问者的推荐人?在 WordPress 中有没有一种方法可以使用查询字符串传递引荐来源网址?
当他们登陆博客时,在原始推荐人处放置一个 cookie。
然后从应用程序中阅读此内容。
掀起一个插件来做这样的事情:
if( !isset($_COOKIE['ref']) ) { setcookie(...); }
如果你觉得自己像个黑客,你可以把它添加到 WP 的 index.php 中,但插件会是更便携、更干净的选择。