背景:
bluehost建的网站,使用Wordpress免登录接口发布文章,出现报错Uncaught Error: Call to undefined function get_magic_quotes_gpc()
发现是上传到服务器根目录的Locoy.php的383行出现问题
解决:
if(get_magic_quotes_gpc())
改为
if ( function_exists('get_magic_quotes_gpc') && get_magic_quotes_gpc() )
修改后,正常发布。