Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 19th, 2012  |  syntax: None  |  size: 0.35 KB  |  hits: 6  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. function rkv_no_curly_save( $content ) {
  2.  
  3.         // call the global
  4.         global $post;
  5.  
  6.         // get the content
  7.         $content = $post->post_content;
  8.  
  9.         // clean it up
  10.         $original = array('“', '”', '’');
  11.         $replaced = array('"', '"', '\'');
  12.  
  13.         // now style and return it
  14.         return str_replace($original, $replaced, $content);
  15.  
  16.  
  17. }
  18. add_action('content_save_pre', 'rkv_no_curly_save');