如何在wordpress中添加自定义表单的操作?

时间:2015-06-13 12:14:00

标签: html wordpress url action contact-form

我使用HTML在wordpress页面创建了一个自定义联系表单,并将操作设置为“../customer-details.php”。此文件位于主题文件夹中。当我单击表单上的提交时,它返回404页面不存在错误。为什么会这样?我的操作网址有什么问题?

以下是我用来创建表单的链接

http://www.inkthemes.com/how-you-can-easily-create-customized-form-in-wordpress

2 个答案:

答案 0 :(得分:1)

尝试改为使用action="<?php echo bloginfo('template_url'); ?>/customer-details.php"

答案 1 :(得分:0)

据我所知,表单无法找到文件&#34; ../ customer-details.php&#34;。再次检查它是否位于正确的文件夹中。 看看,不是从WordPress管理面板,而是从服务器上的文件目录。
另一种解决方案可能是使用短代码来创建表单。有一些非常邪恶的形式,让你做很多很酷的事情看看 https://wordpress.org/plugins/contact-form-7/
https://wordpress.org/plugins/custom-contact-forms/
https://wordpress.org/plugins/advanced-custom-fields-contact-form-7-field/

我想这应该可以解决你的问题。