最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

database - How to delete all the content of a wordpress site without deleting the Post and pages?

programmeradmin0浏览0评论

Is there any way to delete all the content of every post without actually deleting the post!

Suppose , I have articles

  1. how to install wordpress ?
  2. what is wordpress . . . . and so on
  3. What is plugin ?

Suppose , I want to delete all the contents of each article without actually deleting the post.

The title , the tag , the category should remain. Only the content should be deleted.

How can this be done ?

Is there any way to delete all the content of every post without actually deleting the post!

Suppose , I have articles

  1. how to install wordpress ?
  2. what is wordpress . . . . and so on
  3. What is plugin ?

Suppose , I want to delete all the contents of each article without actually deleting the post.

The title , the tag , the category should remain. Only the content should be deleted.

How can this be done ?

Share Improve this question edited Aug 7, 2015 at 7:09 Pieter Goosen 55.4k23 gold badges116 silver badges210 bronze badges asked Aug 7, 2015 at 4:05 pradippradip 701 silver badge10 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 1

You can run this MySQL query to empty post content.

UPDATE wp_posts SET post_content='';

make sure you have a backup before you run this query, in case you need it later. Also make sure that your MySQL table prefix is wp_.

Another Method.

You can also use WP_Query custom query to remove post content.

$args = array(
  'post_type' => array( 'post', 'page' ),
  'posts_per_page' => '-1',
);

$my_query = new WP_Query( $args );

if ( $my_query->have_posts() ) :
  while ( $my_query->have_posts() ) : $my_query->the_post();

    wp_update_post( array(
      'ID'            => get_the_id(),
      'post_content'   => '',
    ) );

  endwhile;
endif;

wp_reset_postdata();

You can use any of the above method. Both are working, just tested them.

发布评论

评论列表(0)

  1. 暂无评论