在Wordpress中从前端更新类别

时间:2014-12-04 22:55:38

标签: wordpress categories frontend

我基于我找到的教程,大部分时间都在工作。这是一个前端表单,让我在点击提交按钮时更改帖子标题,但我也想允许更新类别,我不知道如何让它去做。

我正在使用wp_dropdown_categories吐出一个现有类别的下拉框,如果它有助于知道它的名称和ID是“cat”。

我怀疑update_post_meta可能需要参与其中,但我可能错了,而且我还不完全确定如何实现它。

<?php
if(isset($_POST['post_nonce_field']) && wp_verify_nonce($_POST['post_nonce_field'], 'post_nonce')) {

        $postTitle = trim($_POST['title']);

        $post_id = get_the_ID();
        $my_post['ID'] = $post_id;

        $template_dir = get_bloginfo('template_directory');
        $my_post = array();
        $my_post['post_status'] = 'publish';
        $my_post['post_title'] = $postTitle;
        $my_post['filter'] = true;
        wp_update_post( $my_post);

        wp_redirect( get_permalink( $post_id ) );
        exit; 
    }

get_header();
?>


    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>

    <form action="" id="update-post" method="post">
        <label>Post</label>
        <input type="text" id="title" name="title" value="<?php echo the_title(); ?>" />

        <label>Category</label>
        <?php $categories = get_the_category();
        $category_id = $categories[0]->cat_ID;?>
        <?php wp_dropdown_categories( "show_count=1&hierarchical=1&orderby=name&order=ASC&selected=" . $category_id . "&hide_empty=0&show_option_all=None" ); ?>

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

        <?php wp_nonce_field('post_nonce', 'post_nonce_field'); ?>
    </form>

    <?php endwhile; endif; ?>


<?php get_footer(); ?>

提前致谢!

1 个答案:

答案 0 :(得分:2)

您可以使用wp_set_object_terms()Codex

中的更多信息
wp_set_object_terms( $post_id, intval( $_POST['cat'] ), 'category', false );