WordPress导出导入工具时文章自定义摘要会有空白符

2019-10-0815:34:11网站建设与开发Comments2,226 views字数 455阅读模式

WordPress后台自带了一个网站搬家的工具,就是WordPress导入/导出工具。文章源自菜鸟学院-https://www.cainiaoxueyuan.com/cms/16801.html

通过导出工具,可以将网站中的所有内容导出到自己的电脑中,形成一个XML文件,然后再通过导入工具,将这个XML文件导入到新的WordPress网站中,实现网站在线搬家的过程。文章源自菜鸟学院-https://www.cainiaoxueyuan.com/cms/16801.html

WordPress导出导入工具时文章自定义摘要会有空白符文章源自菜鸟学院-https://www.cainiaoxueyuan.com/cms/16801.html

最近在调试主题时候,使用WordPress的导出导入工具时,在分类列表中输出文章摘要的地方不显示了,出现了空白符。文章源自菜鸟学院-https://www.cainiaoxueyuan.com/cms/16801.html

主题本身是自动截取文章前多少个字符作为摘要。文章源自菜鸟学院-https://www.cainiaoxueyuan.com/cms/16801.html

如果在自定义摘要中手动设置了摘要会正常显示所设置的内容:文章源自菜鸟学院-https://www.cainiaoxueyuan.com/cms/16801.html

WordPress导出导入工具时文章自定义摘要会有空白符文章源自菜鸟学院-https://www.cainiaoxueyuan.com/cms/16801.html

如何解决这个问题,在主题目录下的functions.php里添加如下代码即可:文章源自菜鸟学院-https://www.cainiaoxueyuan.com/cms/16801.html

if (!function_exists('mp_trim_excerpt_whitespace')) {
    function mp_trim_excerpt_whitespace($excerpt) {
        return trim($excerpt);
    }
    add_filter('get_the_excerpt', 'mp_trim_excerpt_whitespace', 1);
}
文章源自菜鸟学院-https://www.cainiaoxueyuan.com/cms/16801.html
  • 本站内容整理自互联网,仅提供信息存储空间服务,以方便学习之用。如对文章、图片、字体等版权有疑问,请在下方留言,管理员看到后,将第一时间进行处理。
  • 转载请务必保留本文链接:https://www.cainiaoxueyuan.com/cms/16801.html

Comment

匿名网友 填写信息

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定