WordPress 仪表盘页面有一个“近期评论”小工具,用来显示网站最新的评论。但是默认情况下,会过滤掉评论的内容格式,比如换行分段,然后统统地显示为一段。有些时候,失去格式的内容阅读起来还挺不方便。
如果想向上图一样,恢复评论内容的格式,将下面的代码添加到当前主题的 functions.php 即可:
/**
* WordPress 仪表盘“近期评论”显示完整评论内容和格式
* https://www.wpdaxue.com/full-comments-on-dashboard.html
*/
function full_comments_on_dashboard($excerpt) {
global $comment;
if ( !is_admin() )
return $excerpt;
$content = wpautop($comment->comment_content);
$content = substr($content, 3, -5); // 移除第一个 <p> 和最后一个 </p>
$content = str_replace('<p>', '<p style="display:block; margin:1em 0">', $content);
return $content;
}
add_filter('comment_excerpt', 'full_comments_on_dashboard');
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。
??