同时编辑多个wordpress帖子正文

时间:2018-11-17 06:42:59

标签: wordpress posts editing

我是WordPress图书图书馆网站的所有者。我想编辑23000个帖子,并添加一些文本或替换帖子正文中的某些文本或链接。我找不到快速编辑的任何解决方案。因为完成这项艰巨的任务需要我很多年。

请帮助

1 个答案:

答案 0 :(得分:0)

$post_content =  $wpdb->get_results("select post_content from wp_posts where ID = 9969");
  $content = $post_content[0]->post_content ;

  $replaced_content = preg_replace_callback('/code to replace in form of regex/',
       'code with which you want to replace',
        $content); 

$wpdb->query('UPDATE wp_posts SET post_content = "'.$wpdb->_real_escape($replaced_content).'" WHERE ID = "'.$post_id.'"');