问题描述
我正在尝试从 Wordpress 的前端发帖.我在名为 page-submit. 的页面中有以下代码,虽然它可以工作,但在提交页面时出现 404 错误,但我不知道为什么或如何跟踪问题.
这个页面 page_submit. 显示正常并且位于我的主题文件夹中.
有什么建议吗?
<?$title,'post_content' =>$描述,'post_category' =>$_POST['cat'],//也可用于自定义分类法'tags_input' =>$标签,'post_status' =>'publish',//选择:发布、预览、未来等.'post_type' =>$_POST['post_type']//如果你想使用自定义的帖子类型);wp_insert_post($post);//将 $post 的值传递给 WordPress 的插入函数//http://codex.wordpress.org/Function_Reference/wp_insert_postwp_redirect(home_url());//提交后跳转到首页}//万一//执行 wp_insert_post 操作以插入它do_action('wp_insert_post', 'wp_insert_post');?><!-- 新的帖子表单--><div id="邮箱"><form id="new_post" name="new_post" method="post" action=""><p><label for="title">Title</label><br/><input type="text" id="title" value="" tabindex="1" size="20" name="title"/></p><p><label for="description">Description</label><br/><textarea id="description" tabindex="3" name="description" cols="50" rows="6"></textarea></p><p><?</表单>