我正在创建自定义前端帖子提交表单。我正在使用wp_insert_post
用于创建新帖子。该函数工作正常,但未在数据库中创建修订记录。
下面是我的代码。我想把这篇文章的每一次修改都记录下来。Plz帮助…谢谢…
<?php
if (isset($_POST[\'submit_post\']) ) {
$my_post = array(
\'post_title\' => wp_strip_all_tags( $_POST[\'post_title\'] )
);
wp_insert_post( $my_post );
}
?>
<form method="POST">
<div class="form-group">
<label for="post_title">Post Title</label>
<input type="text" class="form-control" name="post_title" placeholder="">
</div>
<button type="submit" name="submit_post" class="btn btn-default">Submit Post</button>
</form>