wpautop WordPress 文章格式化

Changes double line-breaks in the text into HTML paragraphs (<p>…</p>).

把文章里的 2次换行 格式化成 html 段落(<p>…</p>).

$foo
(string) (required) The text to be formatted. 需要格式化的文章。
Default: None
$br
(boolean or integer) (optional) Preserve line breaks. When set to true, any line breaks remaining after paragraph conversion are converted to HTML
. Line breaks within script and style sections are not affected. 保留换行符。当设置为true,任何换行符段转换后剩余的被转换为HTML的
。脚本和样式段内换行,不会受到影响。
Default: 1

例如:
wpautop(get_the_content())

有的时自己写输出代码的时候, get_the_content 的输出结果没有格式化,就需要像上面那样处理。