Disable <p> tags from being added in post content in WordPress

Disable

tags from being added in post content in WordPress on child sites.

Snippet Type

Execute on Child Sites

Snippet

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 );

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.