Guest User

Untitled

a guest
Dec 6th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <?php
  2. add_filter( 'content_save_pre', 'wpp_clean_google_docs' );
  3.  
  4. function wpp_clean_google_docs( $content ) {
  5. if ( ! ( 'transcript' == get_post_type() ) ) {
  6. return $content;
  7. }
  8.  
  9. $search = array( '&nbsp;',
  10. '</span>'
  11. );
  12.  
  13. $content = str_replace( $search, '', $content );
  14.  
  15. return preg_replace( '/<span[^>]+\>/i', '', $content );
  16. }
Add Comment
Please, Sign In to add comment