K7

K7Blog

须知少年凌云志 曾许人间第一流.
proton
telegram

WordPress新站必要优化的几点+插件

1. 后台媒体设置图像大小全部设置为 0

2. 访问 **/wp-admin/options.php** 搜索 medium_large_size_w 设置为 0

3. 安装 Attachment Pages Redirect 屏蔽媒体单独链接

4. 安装 Redis Object Cache redis 数据库缓存

5. 安装 Smart SEO Tool - 百度搜索 SEO 优化 优化 url 和站外链接

6. 安装 Spider Analyser 监控蜘蛛

7. 安装 多合一搜索自动推送管理 推送给搜索引擎

8. 安装 经典编辑器 方便编辑

9. 安装 WP Super Cache 缓存页面

10. 安装代码,上传文件随机命名

add_filter('wp_handle_upload_prefilter', 'custom_upload_filter' );
function custom_upload_filter( $file ){
    $info = pathinfo($file['name']);
    $ext = $info['extension'];
    $filedate = date('YmdHis').rand(10,99);//为了避免时间重复,再加一段2位的随机数
    $file['name'] = $filedate.'.'.$ext;
    return $file;
}
Loading...
Ownership of this post data is guaranteed by blockchain and smart contracts to the creator alone.