Advertisement
Guest User

Untitled

a guest
Sep 27th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. function jchwebdev_rant_quote_question( $content ) {
  2. global $post;
  3. $pattern = '/rcq/';
  4. $replacement = '<span class="interview initials">RC</span>$1';
  5.  
  6. if ($post->post_status == 'draft') {
  7. return preg_replace($pattern, $replacement, $content);
  8. }
  9. else
  10. return $content;
  11. }
  12. add_filter( 'content_save_pre' , 'jchwebdev_rant_quote_question' , 10, 1);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement