Guest User

Untitled

a guest
Oct 17th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. add_action( 'publish_post', function ( $ID ) {
  2. $post = get_post( $ID );
  3. $plain_content = strip_tags( $post->post_content );
  4. $new_post = array(
  5. 'ID' => $ID,
  6. 'post_content' => $plain_content,
  7. );
  8.  
  9. wp_update_post( $new_post );
  10. } );
Add Comment
Please, Sign In to add comment