Code-Snippets-Functions/Execute a function on a child site/WordPress/disable-wpautop.txt

6 lines
205 B
Text

function disable_wp_auto_p( $content ) {
remove_filter( 'the_content', 'wpautop' );
remove_filter( 'the_excerpt', 'wpautop' );
return $content;
}
add_filter( 'the_content', 'disable_wp_auto_p', 0 );