WordPress 的联系表单 7 插件中未设置值
我在 WordPress 中使用联系表单 7 插件,并且生成了一个如下所示的文本字段:
[text* your-name 30/ "<?php $_GET['name']; ?>"]
我必须设置来自另一个带有 GET 方法的表单的输入名称的值,但它不起作用。有解决办法吗?
I'm using the contact form 7 plugin in wordpress and I have generated a text field like this:
[text* your-name 30/ "<?php $_GET['name']; ?>"]
I have to set value of input name which comes from another form with GET method but it's not worked. Is there a solution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你需要的是另一个钩子,因为 php 可能在这里不可用。阅读此插件 http://wordpress.org/extend/plugins /contact-form-7-dynamic-text-extension/ 它给出了确切的解决方案。
what you need is another hook as php might not be available here. read this plugin http://wordpress.org/extend/plugins/contact-form-7-dynamic-text-extension/ it gives the exact solution.