You appear to be a bot. Output may be restricted
Description
Replace double line-breaks without adding `<br />`.Perform most of wpautop() formatting except for the line-break to br
conversion
Usage
$string = wpautop_nobr( $pee );
Parameters
- $pee
- ( string ) required – The text which has to be formatted.
Returns
string Text which has been converted into correct paragraph tags.Source
File name: oik-css/includes/formatting-later.phpLines:
1 to 3 of 3
function wpautop_nobr( $pee ) { return( wpautop( $pee, false ) ); }View on GitHub View on Trac