duandu1915 2013-07-19 13:53 采纳率: 100%
浏览 37
已采纳

Wordpress csv导入重复

I've used an adapted version of a csv import plugin for wordpress. It imports the csv to create and update posts. To update existing posts I've added an edit that finds the post id by title, then if it exists it overwrites, otherwise it creates a new post.

Problem is that it seems to not be very reliable! If I import the same csv several times it over-writes most of them but I get a few duplicates. Is there any way I can make this more reliable, or is there another way I can deal with duplicate posts?

main function for creating posts here

 function create_post($data, $options) {
    extract($options);
//edit 1 added here
   global $wpdb;  
//end

    $data = array_merge($this->defaults, $data);
    $type = $data['csv_post_type'] ? $data['csv_post_type'] : 'post';
    $valid_type = (function_exists('post_type_exists') &&
        post_type_exists($type)) || in_array($type, array('post', 'page'));

    if (!$valid_type) {
        $this->log['error']["type-{$type}"] = sprintf(
            'Unknown post type "%s".', $type);
    }

    $new_post = array(
        'post_title'   => convert_chars($data['csv_post_title']),
        'post_content' => wpautop(convert_chars($data['csv_post_post'])),
        'post_status'  => $opt_draft,
        'post_type'    => $type,
        'post_date'    => $this->parse_date($data['csv_post_date']),
        'post_excerpt' => convert_chars($data['csv_post_excerpt']),
        'post_name'    => $data['csv_post_slug'],
        'post_author'  => $this->get_auth_id($data['csv_post_author']),
        'tax_input'    => $this->get_taxonomies($data),
        'post_parent'  => $data['csv_post_parent'],
    );

// edit 2 here
    $new_post['ID'] = $wpdb->get_var( "SELECT ID FROM $wpdb->posts WHERE post_title = '" .   $data['csv_post_title'] . "'" );
// ends

    // pages don't have tags or categories
    if ('page' !== $type) {
        $new_post['tags_input'] = $data['csv_post_tags'];

        // Setup categories before inserting 
        $cats = $this->create_or_get_categories($data, $opt_cat);
        $new_post['post_category'] = $cats['post'];
    }

// edit 3
    if(!empty($new_post['ID'])) {
    $id = wp_update_post($new_post);
} else {
    $id = wp_insert_post($new_post);
}
// ends

    if ('page' !== $type && !$id) {
        // cleanup new categories on failure
        foreach ($cats['cleanup'] as $c) {
            wp_delete_term($c, 'category');
        }
    }
    return $id;
}

thanks

  • 写回答

1条回答 默认 最新

  • dsaj20411 2013-07-22 15:57
    关注

    Fixed! I used the built in wordpress function, get_page_by_title . Here is the code I used to target the correct post.

    if (!get_page_by_title( $bpp_title, 'OBJECT', 'publications')) {
    
    
        $id = wp_insert_post($new_post);
    
        } else {
    
            $bpp_page = get_page_by_title( $bpp_title, 'OBJECT', 'publications');
            $new_post['ID'] = $bpp_page->ID;
    
            $id = wp_update_post($new_post);
    
        }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 机器学习能否像多层线性模型一样处理嵌套数据
  • ¥20 西门子S7-Graph,S7-300,梯形图
  • ¥50 用易语言http 访问不了网页
  • ¥50 safari浏览器fetch提交数据后数据丢失问题
  • ¥15 matlab不知道怎么改,求解答!!
  • ¥15 永磁直线电机的电流环pi调不出来
  • ¥15 用stata实现聚类的代码
  • ¥15 请问paddlehub能支持移动端开发吗?在Android studio上该如何部署?
  • ¥20 docker里部署springboot项目,访问不到扬声器
  • ¥15 netty整合springboot之后自动重连失效