mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
6 lines
205 B
Text
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 );
|