问题:WordPress 插件开发中发现的问题
发布于
警告!这篇文章很旧!
文章上次更新时间是 2021 年,距离现在已经 3 年没有未更新/维护了,请根据实际情况谨慎使用。
undefined function get_home_path()
问题表现:从插件库下载插件,点击“启用”后直接报错 “Call to undefined function get_home_path()”。
解决办法:用变量 ABSPATH(来自 wp-config.php) 代替 get_home_path()。
参考文档:《Uncaught Error: Call to undefined function get_home_path() after update to 3.5.1》