在 WordPress 內,Author Profile 中的 Biographical Info 內不能使用任何隔行如 <br>, <p> 之類,所以會堆埋一舊。

其實解決方法好簡單,只要到 \wp-includes\user.php
找出

$description = apply_filters( 'pre_user_description', $description );

在前面加上 //,變成

// $description = apply_filters( 'pre_user_description', $description );

就可以了進入 Profile 加上隔行之類(記得不是更改完就會即時會隔行,是需要入 Profile 更改的),而不會被 filter 走。

修改前:

author profile before edit

修改後:

author profile after edit