Is there any plugin to add own HTML form in wordpress blog. I want to integrate my own form to wordpress??
Leave a Reply
You must be logged in to post a comment.
Is there any plugin to add own HTML form in wordpress blog. I want to integrate my own form to wordpress??
You must be logged in to post a comment.
Here’s a blog post explaining how to do that and more: http://shibulijack.wordpress.com/2012/03/18/create-custom-forms-in-wordpress/
Basically you can just add the form html to a page in the page editor (in the text mode) and use your php script url as the form’s action attribute.
You Can Use HTML FORMS Plugin to make form with custom HTML
HTML FORMS
checkout the advanced custom fields plugin in which you can simply add forms to your blog
http://wordpress.org/extend/plugins/advanced-custom-fields/
Here is what i did once, im pretty sure that there is a better way to do this though:
then make a new page in the wordpress administration area and put this code in the source view:
<script type="text/javascript">window.location.href='path/to/myform.php';</script>
But as said, this is kind of a bad way to do it, it got the job done though.