Advertisement
miriamdepaula

WordPress: Disable Formatting Shortcuts

Aug 25th, 2015
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.37 KB | None | 0 0
  1. function disable_mce_wptextpattern( $opt ) {
  2.  
  3.     if ( isset( $opt['plugins'] ) && $opt['plugins'] ) {
  4.         $opt['plugins'] = explode( ',', $opt['plugins'] );
  5.         $opt['plugins'] = array_diff( $opt['plugins'] , array( 'wptextpattern' ) );
  6.         $opt['plugins'] = implode( ',', $opt['plugins'] );
  7.     }
  8.  
  9.     return $opt;
  10. }
  11.  
  12. add_filter( 'tiny_mce_before_init', 'disable_mce_wptextpattern' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement