admin管理员组文章数量:1318335
Maybe someone can help me with a small problem I'm having. I'm trying to use this: / to create a submit form for Wordpress. I've tested it on a regular site(not WP) and it works. I can't figure out why it won't work in wp.
This is my form. I've created two page templates, one has the form, the other has the wp_insert_post code. If I change the form action to action=".php" it works, if I point it to a page template it doesn't. I need it to point to a page template for the wp_insert_post code to work.
This is on one first page:
<form id="myForm" action="" method="post">
Name: <input type="text" name="name" />
Comment: <textarea name="comment"></textarea>
<input type="submit" value="Submit Comment" />
Thanks
Maybe someone can help me with a small problem I'm having. I'm trying to use this: http://jquery.malsup/form/ to create a submit form for Wordpress. I've tested it on a regular site(not WP) and it works. I can't figure out why it won't work in wp.
This is my form. I've created two page templates, one has the form, the other has the wp_insert_post code. If I change the form action to action="http://mysite/page.php" it works, if I point it to a page template it doesn't. I need it to point to a page template for the wp_insert_post code to work.
This is on one first page:
<form id="myForm" action="http://mysite/submitest" method="post">
Name: <input type="text" name="name" />
Comment: <textarea name="comment"></textarea>
<input type="submit" value="Submit Comment" />
Thanks
Share Improve this question asked Nov 16, 2011 at 14:59 CiprianCiprian 2122 silver badges14 bronze badges 3 |1 Answer
Reset to default 3Leave the action value as blank. Give the submit
button a name as name='form_sub'
. Then add the following code to your functions.php
file. Check the codex for init
hook.
You can create a 'Thank You' page, or a confirmation page where the user should go after successful submission.
<?php
add_action('init', 'form_submit');
function form_submit(){
if(isset($_POST['form_sub']))
{
//here you'll have your form data in a $_POST array, you can check it using a print_r. parse the form and insert the post
$title = $_POST['name'];
$content = $_POST['comment'];
//change the category and author as you want
$post_obj = array(
'post_title' => $title,
'post_content' => $content,
'post_category' => array(1), //Uncategorized
'post_status' => 'draft',
'post_author' => 1 //Admin
);
$id = wp_insert_post($post_obj);
//check if successfully submitted
if(isset($id) && !is_wp_error($id))
{
//redirect to a thank you page, make sure the slug is 'thank-you'
wp_redirect(home_url('/thank-you'));
exit;
}
}
}
?>
Try this. Let me know if you are stuck.
Edit: This is how the form template should be. The submit button should have the name attribute, not the form.
<?php /* Template Name: Submit */ ?>
<?php get_header(); ?>
Form this:
<form action="" method="post">
Name: <input type="text" name="name" />
Comment: <textarea name="comment"></textarea>
<input type="submit" value="Submit" name="form_sub" />
</form>
<?php get_footer(); ?>
本文标签: phpFront end submit form with jquery form plugin
版权声明:本文标题:php - Front end submit form with jquery form plugin 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1742041677a2417574.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
functions.php
is the RIGHT place for putting your post insertion code. You could get the form data, insert the post, and redirect to the page that has the second template applied. – Rutwick Gangurde Commented Nov 16, 2011 at 15:18