_autop_newline_preservation_helper

函数
_autop_newline_preservation_helper ( $matches )
Access
Private
参数
  • (array) $matches preg_replace_callback matches array
    Required:
返回值
  • (string)
定义位置
相关方法
__checked_selected_helperwp_embed_register_handlerwpmu_log_new_registrations
引入
3.1.0
弃用
-

_autop_newline_preservation_helper: 这个函数被WordPress用来保留通过autop函数的文本中的换行。autop函数会自动给文本添加段落标签,但这个函数确保换行符也被保留下来。

换行保存wpautop()的帮助函数。

function _autop_newline_preservation_helper( $matches ) {
	return str_replace( "n", '<WPPreserveNewline />', $matches[0] );
}

常见问题

FAQs
查看更多 >