This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter('wpdesk_allegro_before_wpautop', 'af109_wpdesk_allegro_before_wpautop' ); | |
function af109_wpdesk_allegro_before_wpautop( $content ) { | |
return str_replace( array("\r\n", "\r", "\n"), "\n\n", $content ); | |
} |