Advertisement
simkoG

follow_up_email remove autop

Jun 10th, 2021
911
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 KB | None | 0 0
  1. /**
  2.  * Remove auto format for Follow Up Emails
  3.  */
  4.    
  5. add_filter( 'the_content', function( $content ){  
  6.   if ( 'follow_up_email' === get_post_type() ) {
  7.     remove_filter( 'the_content', 'wpautop' );
  8.     remove_filter( 'the_excerpt', 'wpautop' );
  9.   }
  10.   return $content;
  11. }, 0 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement