新行保存帮助功能为wpautop
原型
_autop_newline_preservation_helper( array $matches )
参数
$matches
(array)
(Required)
preg_replace_callback匹配数组
返回值
(string)
源文件
路径:wp-includes/formatting.php
<?php
...
function _autop_newline_preservation_helper( $matches ) {
return str_replace( "n", "<WPPreserveNewline />", $matches[0] );
}
...
?>
其他
英文文档:https://developer.wordpress.org/reference/functions/_autop_newline_preservation_helper/