您可以从 WordPress 页面中访问 POST 变量吗?
我在 WordPress 页面内用 PHP 构建了一个联系表单,使用 exec-php 插件来验证并运行代码。然而,Wordpress 重写系统似乎会覆盖发送到页面的 POSTed 表单数据。有什么办法可以保证这些数据能够通过吗?我的 .htaccess 中只有标准 WP 重写块。
I built a contact form in PHP inside a Wordpress page, using the exec-php plugin to val and run the code. However, the Wordpress rewrite system seems to override the POSTed form data being sent to the page. Is there any way to ensure that this data gets passed through? All I have in my ,htaccess is the standard WP rewrite block.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,您可以在 Wordpress 页面中访问表单 POST 变量。
我创建了一个这样的页面模板:
然后我通过 WordPress 管理面板创建了一个页面并使用了上面的页面模板。
您可以看到我在此页面模板中有一个示例表单“测试”。现在,当我在浏览器中访问新创建的页面并在表单中输入一些文本并提交表单时,我得到了
var_dump($_POST);
行:如您所见,Wordpress 不会中断任何操作并且您的页面可以完全访问表单 POST 变量的
$_POST
数组。Yes you can access forrm POST variables in a page of Wordpress.
I created a page template like this:
Then I created a page through Wordpress admin panel and used above page template.
You can see I have a sample form "test" in this page template. Now when I visited the newly created page in my browser and entered some text in form and submitted the form I got this for
var_dump($_POST);
line:As you can see Wordpress doesn't interrupt anything and your page has full access to your
$_POST
array for Form POST variables.