前言:
如今小伙伴们对“wordpress怎么打不开”大体比较重视,各位老铁们都想要分析一些“wordpress怎么打不开”的相关资讯。那么小编同时在网摘上网罗了一些对于“wordpress怎么打不开””的相关内容,希望朋友们能喜欢,姐妹们一起来了解一下吧!今天突然公司负责网站编辑的同事说公司网站后台打不开编辑功能了。
由于我的电脑是设置了自动缓存页面,而且从来不清理的,估计也是一些众所周知的原因导致的了,马上进行抓包分析。
找到了这个导致无法打开页面的元凶后,就估计调用文件的位置,既然是framework,那就到wordpress主题文件的文件夹里找到下面的文件。
/wp-content/themes/你的主题文件夹/framework/php/class-gmaps.php
搜索.google,果然找到了以下的代码
if( ! class_exists( 'av_google_maps' ) ){ class av_google_maps { // maintain URL and version number here for all objects using this element const API_URL = ''; const API_VERSION = '3.30'; const MAPS_SEARCH_URL = ''; const AJAX_NONCE = 'av_google_maps_nonce'; /** * Holds the instance of this class * * @since 4.3.2 * @var av_google_maps */ static private $_instance = null;
修改成,特别注意,国内的地址和国外的地址域名和形式是不同的:
if( ! class_exists( 'av_google_maps' ) ){ class av_google_maps { // maintain URL and version number here for all objects using this element const API_URL = ''; const API_VERSION = '3.30'; const MAPS_SEARCH_URL = ''; const AJAX_NONCE = 'av_google_maps_nonce'; /** * Holds the instance of this class * * @since 4.3.2 * @var av_google_maps */ static private $_instance = null;
保存文件后,刷新页面就可以了。
版权声明:
本站文章均来自互联网搜集,如有侵犯您的权益,请联系我们删除,谢谢。
标签: #wordpress怎么打不开