通过前端表单将用户重定向到新创建的页面?

时间:2012-07-04 14:12:15

标签: php wordpress

我正在通过前端表单在Wordpress中创建一个页面,代码如下。在提交时,如何将用户重定向到新创建的页面?

更新: 是否可以将post_title变为网址而不是网页ID?那么像company.com/my-company?

<?php $postTitle = $_POST['post_title'];
$post = $_POST['post'];
$submit = $_POST['submit'];

if(isset($submit)){

    global $user_ID;

    $new_post = array(
        'post_title' => $postTitle,
        'post_content' => $post,
        'post_status' => 'publish',
        'post_date' => date('Y-m-d H:i:s'),
        'post_author' => $user_ID,
        'post_type' => 'members',
        'post_category' => array(0)
    );

    wp_insert_post($new_post);

}

?>



<form action="" method="post">
<table border="1" width="200">
  <tr>
    <td><label for="post_title">Post Title</label></td>
    <td><input name="post_title" type="text" /></td>
  </tr>
  <tr>
    <td><label for="post">Post</label></td>
    <td><input name="post" type="text" /></td>
  </tr>
</table>

<input name="submit" type="submit" value="submit" />
</form>

1 个答案:

答案 0 :(得分:1)

wp_redirect() - 将用户重定向到指定的绝对URI