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.
我的用户会收到需要单击链接的电子邮件。电子邮件中的 URL 如下所示:
http://www.mywordpresssite.com/verifyvote?email=aa@aaa.com&rand=ss1dko33xj
我的问题是:如何创建一个 wordpress 函数,该函数可以执行GET该操作并读取 URL 中的所有变量?
GET
另外:所有wordpress URL都需要实际页面/帖子是真的吗?我不能只注册一个自定义永久链接并在其中添加一些东西functions.php吗?
functions.php
您只需检查是否设置了任何 $_GET['email'],将此代码放在要应用某些操作的页面的开头
if(isset($_GET['email']) && isset($_GET['rand'])){ // do this }else{ // do this }
谢谢