本文最后更新于 998 天前,其中的信息可能已经有所发展或是发生改变。
Autoptimize是一款优秀的Wordpress优化插件,它可以对Html/CSS/JS等进行优化,本篇主要记录一下怎么解决插件设置页面在国内加载速度慢的问题。
这款插件的设置页面在我更换服务器之前很快就能打开,自从换到了国内之后,速度很慢有时候还会出现无法访问的情况。
进去之后发现,在设置页面右边加载了新闻和广告,请求了国外的地址。
打开审查元素发现,是一个id为autoptimize_admin_feed的div容器。
所以只需要把这一块内容删掉就好了,于是我便前往插件的目录寻找这一部分的输出。
最后终于在插件根目录/classes/autoptimizeConfig.php里面找到了这一部分。
<div id="autoptimize_admin_feed">
<?php if ( apply_filters( 'autoptimize_filter_show_partner_tabs', true ) ) { ?>
<div class="autoptimize_banner hidden">
<ul>
<?php
if ( $this->settings_screen_do_remote_http ) {
$ao_banner = get_transient( 'autoptimize_banner' );
if ( empty( $ao_banner ) ) {
$banner_resp = wp_remote_get( 'https://misc.optimizingmatters.com/autoptimize_news.html?ao_ver=' . AUTOPTIMIZE_PLUGIN_VERSION );
if ( ! is_wp_error( $banner_resp ) ) {
if ( '200' == wp_remote_retrieve_response_code( $banner_resp ) ) {
$ao_banner = wp_kses_post( wp_remote_retrieve_body( $banner_resp ) );
set_transient( 'autoptimize_banner', $ao_banner, WEEK_IN_SECONDS );
}
}
}
echo $ao_banner;
}
?>
<li><?php _e( "Need help? <a href='https://wordpress.org/plugins/autoptimize/faq/'>Check out the FAQ here</a>.", 'autoptimize' ); ?></li>
<li><?php _e( 'Happy with Autoptimize?', 'autoptimize' ); ?><br /><a href="<?php echo network_admin_url(); ?>plugin-install.php?tab=search&type=author&s=optimizingmatters"><?php _e( 'Try my other plugins!', 'autoptimize' ); ?></a></li>
</ul>
</div>
<?php } ?>
<div style="margin-left:10px;margin-top:-5px;">
<h2>
<?php _e( 'Autoptimize news', 'autoptimize' ); ?>
</h2>
<div id="futtta_feed">
<div id="autoptimizefeed">
</div>
</div>
</div>
<?php if ( apply_filters( 'autoptimize_filter_show_partner_tabs', true ) ) { ?>
<div style="float:right;margin:50px 15px;"><a href="https://blog.futtta.be/2013/10/21/do-not-donate-to-me/" target="_blank"><img width="100px" height="85px" src="<?php echo plugins_url() . '/' . plugin_basename( dirname( __FILE__ ) ) . '/external/do_not_donate_smallest.png'; ?>" title="<?php _e( 'Do not donate for this plugin!', 'autoptimize' ); ?>"></a></div>
<?php } ?>
</div>
最后删掉这部分并保存,再次进入Autoptimize的设置页面就很流畅了。
不过这么做也有弊端,插件更新之后还要去删一次,目前我也没有更好的解决方法了……