如何在前台编辑帖子?

时间:2011-05-16 作者:EnexoOnoma

我已经学会了如何从前端创建帖子,但是如何编辑它呢?这是代码I am trying to create a simple frontend form for posting

非常感谢。

2 个回复
最合适的回答,由SO网友:Bainternet 整理而成

就像您链接的示例一样,但不是使用wp_insert_post() 您使用:wp_update_post() 所以你的表格变成:

<?php
$post_to_edit = get_post($post_id); 
?>

<!-- edit Post Form -->
<div id="postbox">
    <form id="new_post" name="new_post" method="post" action="">
        <p>
            <label for="title">Title</label><br />
            <input type="text" id="title" value="<?php echo $post_to_edit->post_title; ?>" 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"><?php echo $post_to_edit->content; ?></textarea>
        </p>
        <p>
        <?php 
            $cat = wp_get_post_terms( $post_to_edit->ID, \'category\');
            wp_dropdown_categories( \'show_option_none=Category&tab_index=4&taxonomy=categoryselected=\'.$cat[0]->term_id);
        ?>
        </p>
        <p>
            <label for="post_tags">Tags</label>
            <input type="text" value="<?php the_terms( $post_to_edit->ID, \'post_tag\', \'\', \', \', \'\' ); ?>" tabindex="5" size="16" name="post_tags" id="post_tags" />
        </p>
        <p align="right"><input type="submit" value="Publish" tabindex="6" id="submit" name="submit" /></p>
        <input type="hidden" name="action" value="f_edit_post" />
        <input type="hidden" name="pid" value="<?php echo $post_to_edit->ID; ?>" />
        <?php wp_nonce_field( \'new-post\' ); ?>
    </form>
</div>

<!--// edit Post Form -->
并且处理变成:

if( \'POST\' == $_SERVER[\'REQUEST_METHOD\'] && !empty( $_POST[\'action\'] ) &&  $_POST[\'action\'] == "f_edit_post" && isset($_POST[\'pid\'])) {
    //get the old post:
    $post_to_edit = get_post((int)$_POST[\'pid\']); 

    //do you validation
    //...
    //...


    // Add the content of the form to $post_to_edit array
    $post_to_edit[\'post_title\'] = $_post[\'title\'];
    $post_to_edit[\'post_content\'] = $_post[\'description\'];
    $post_to_edit[\'tags_input\'] = array($_post[\'post_tags\']);


    //save the edited post and return its ID
    $pid = wp_update_post($post_to_edit); 


    //set new category
    wp_set_post_terms($pid,(array)($_POST[\'cat\']),\'category\',true);

}
现在这没有验证,所以我把它留给你。

SO网友:MartinJJ

Scribu Front End Editor 我还没有亲自尝试过,但我读过一些关于它的好东西

结束

相关推荐

Preview posts returns 404

这是一个大型Wordpress多站点安装,使用单个博客的子文件夹,而不是域。我们正在运行3.1版,预览帖子不起作用。当我按preview时,我得到了404。php页面。日志文件中没有引起我注意的内容,所有插件都已禁用。有时,当我按preview时,会收到一条关于权限不足的错误消息。我没有办法尝试了。